Skip to main content
POST
/
api
/
opensea
/
items
/opensea/items
curl --request POST \
  --url https://api.anysite.io/api/opensea/items \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "contract_address": "<string>",
  "token_id": "<string>",
  "timeout": 300,
  "chain": "ethereum"
}
'
[
  {
    "contract_address": "<string>",
    "token_id": "<string>",
    "@type": "OpenseaItemDetail",
    "chain": "<string>",
    "name": "<string>",
    "image": "<string>",
    "animation_url": "<string>",
    "description": "<string>",
    "is_fungible": false,
    "standard": "<string>",
    "total_supply": 123,
    "rarity_rank": 123,
    "rarity_category": "<string>",
    "background_color": "<string>",
    "token_uri": "<string>",
    "metadata_storage": "<string>",
    "is_transfer_locked": false,
    "is_compromised": false,
    "is_disabled": false,
    "external_url": "<string>",
    "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
      }
    },
    "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": "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>"
    },
    "attributes": []
  }
]

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"

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

Response

Successful Response

contract_address
string
required
token_id
string
required
@type
string
default:OpenseaItemDetail
chain
string | null
name
string | null
image
string | null
animation_url
string | null
description
string | null
is_fungible
boolean
default:false
standard
string | null
total_supply
integer | null
rarity_rank
integer | null
rarity_category
string | null
background_color
string | null
token_uri
string | null
metadata_storage
string | null
is_transfer_locked
boolean
default:false
is_compromised
boolean
default:false
is_disabled
boolean
default:false
external_url
string | null
collection
object
owner
string | null
last_sale
object
best_listing
object
best_offer
object
attributes
object[]