Skip to main content
POST
/
api
/
opensea
/
accounts
/
items
/opensea/accounts/items
curl --request POST \
  --url https://api.anysite.io/api/opensea/accounts/items \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "identifier": "<string>",
  "count": 2,
  "timeout": 300,
  "status": "all",
  "sort": "highest_offer",
  "chains": []
}
'
[
  {
    "contract_address": "<string>",
    "token_id": "<string>",
    "@type": "OpenseaItem",
    "chain": "<string>",
    "name": "<string>",
    "image": "<string>",
    "animation_url": "<string>",
    "description": "<string>",
    "standard": "<string>",
    "is_fungible": false,
    "total_supply": 123,
    "rarity_rank": 123,
    "rarity_category": "<string>",
    "image_aspect_ratio": 123,
    "background_color": "<string>",
    "token_uri": "<string>",
    "metadata_storage": "<string>",
    "owner": "<string>",
    "last_sale": {
      "@type": "OpenseaPrice",
      "usd": 123,
      "amount": 123,
      "symbol": "<string>",
      "native": 123
    },
    "best_listing": {
      "@type": "OpenseaListing",
      "price": {
        "@type": "OpenseaPrice",
        "usd": 123,
        "amount": 123,
        "symbol": "<string>",
        "native": 123
      },
      "marketplace": "<string>",
      "maker": "<string>",
      "quantity_remaining": 123,
      "start_time": "<string>",
      "end_time": "<string>"
    },
    "best_offer": {
      "@type": "OpenseaPrice",
      "usd": 123,
      "amount": 123,
      "symbol": "<string>",
      "native": 123
    },
    "collection": {
      "slug": "<string>",
      "@type": "OpenseaItemCollection",
      "name": "<string>",
      "image": "<string>",
      "category": "<string>",
      "external_url": "<string>",
      "standard": "<string>",
      "is_verified": false,
      "floor_price": {
        "@type": "OpenseaPrice",
        "usd": 123,
        "amount": 123,
        "symbol": "<string>",
        "native": 123
      }
    },
    "attributes": [],
    "created_at": "<string>",
    "last_sale_at": "<string>",
    "last_transfer_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
identifier
string
required

Account identifier: a wallet address, OpenSea username or ENS name

Minimum string length: 1
Examples:

"pranksy"

"vitalik.eth"

"0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459"

count
integer
required

Number of items to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
status
enum<string>
default:all

Listing status filter

Available options:
all,
listed,
not_listed
sort
enum<string>
default:highest_offer

Sort order

Available options:
highest_offer,
lowest_offer,
recently_received,
oldest_received,
highest_listed_price,
lowest_listed_price,
most_rare,
least_rare,
highest_floor,
lowest_floor,
highest_cost,
lowest_cost,
highest_last_sale,
recently_listed,
recently_created
chains
enum<string>[] | null

Restrict to NFTs on these blockchains

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

Response

Successful Response

contract_address
string
required
token_id
string
required
@type
string
default:OpenseaItem
chain
string | null
name
string | null
image
string | null
animation_url
string | null
description
string | null
standard
string | null
is_fungible
boolean
default:false
total_supply
integer | null
rarity_rank
integer | null
rarity_category
string | null
image_aspect_ratio
number | null
background_color
string | null
token_uri
string | null
metadata_storage
string | null
owner
string | null
last_sale
object
best_listing
object
best_offer
object
collection
object
attributes
object[]
created_at
string | null
last_sale_at
string | null
last_transfer_at
string | null