Skip to main content
POST
/
api
/
opensea
/
tokens
/opensea/tokens
curl --request POST \
  --url https://api.anysite.io/api/opensea/tokens \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "contract_address": "<string>",
  "timeout": 300,
  "chain": "ethereum"
}
'
[
  {
    "contract_address": "<string>",
    "@type": "OpenseaToken",
    "chain": "<string>",
    "name": "<string>",
    "symbol": "<string>",
    "decimals": 123,
    "image": "<string>",
    "usd_price": 123,
    "market_cap_usd": 123,
    "total_supply": 123,
    "is_verified": false,
    "is_native": false,
    "token_group": "<string>",
    "score": 123,
    "genesis_date": "<string>",
    "created_at": "<string>",
    "price_change_1h": 123,
    "price_change_24h": 123,
    "price_change_7d": 123,
    "price_change_30d": 123,
    "volume_1h": 123,
    "volume_24h": 123,
    "market_cap_change_24h": 123,
    "warnings": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
contract_address
string
required

Fungible token contract address

Minimum string length: 1
Example:

"0x6982508145454ce325ddbe47a25d4ec3d2311933"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

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

Blockchain the token 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
@type
string
default:OpenseaToken
chain
string | null
name
string | null
symbol
string | null
decimals
integer | null
image
string | null
usd_price
number | null
market_cap_usd
number | null
total_supply
number | null
is_verified
boolean
default:false
is_native
boolean
default:false
token_group
string | null
score
number | null
genesis_date
string | null
created_at
string | null
price_change_1h
number | null
price_change_24h
number | null
price_change_7d
number | null
price_change_30d
number | null
volume_1h
number | null
volume_24h
number | null
market_cap_change_24h
number | null
warnings
string[]