Skip to main content
POST
/
api
/
opensea
/
items
/
activity
/opensea/items/activity
curl --request POST \
  --url https://api.anysite.io/api/opensea/items/activity \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "contract_address": "<string>",
  "token_id": "<string>",
  "count": 2,
  "timeout": 300,
  "chain": "ethereum",
  "event_types": []
}
'
[
  {
    "id": "<string>",
    "@type": "OpenseaActivity",
    "event_type": "<string>",
    "event_at": "<string>",
    "transaction_hash": "<string>",
    "from_address": "<string>",
    "to_address": "<string>",
    "price": {
      "@type": "OpenseaPrice",
      "usd": 123,
      "amount": 123,
      "symbol": "<string>",
      "native": 123
    },
    "sale_type": "<string>",
    "marketplace": "<string>",
    "quantity": 123,
    "chain": "<string>",
    "contract_address": "<string>",
    "token_id": "<string>",
    "item_name": "<string>",
    "item_image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
contract_address
string
required

NFT contract address

Minimum string length: 1
Example:

"0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d"

token_id
string
required

Token id within the contract

Minimum string length: 1
Examples:

"1"

"2438"

count
integer
required

Number of activity events to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
chain
enum<string>
default:ethereum

Blockchain the NFT lives on

Available options:
ethereum,
base,
solana,
arbitrum,
optimism,
polygon,
abstract,
monad,
ink,
apechain,
megaeth,
soneium,
somnia,
animechain,
avalanche,
b3,
berachain,
blast,
flow,
gunz,
ronin,
sei,
shape,
unichain,
zora,
hyperevm
event_types
enum<string>[] | null

Restrict to these event types (defaults to all types)

Available options:
sale,
listing,
offer,
transfer,
mint

Response

Successful Response

id
string
required
@type
string
default:OpenseaActivity
event_type
string | null
event_at
string | null
transaction_hash
string | null
from_address
string | null
to_address
string | null
price
object
sale_type
string | null
marketplace
string | null
quantity
number | null
chain
string | null
contract_address
string | null
token_id
string | null
item_name
string | null
item_image
string | null