Skip to main content
POST
/
api
/
zerion
/
wallets
/
nfts
/zerion/wallets/nfts
curl --request POST \
  --url https://api.anysite.io/api/zerion/wallets/nfts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "address": "<string>",
  "count": 2,
  "timeout": 300,
  "currency": "usd",
  "sort": "floor_price_high",
  "chains": []
}
'
[
  {
    "id": "<string>",
    "@type": "ZerionNftPosition",
    "name": "<string>",
    "contract_address": "<string>",
    "token_id": "<string>",
    "interface": "<string>",
    "is_spam": true,
    "amount": 123,
    "value": 123,
    "image": "<string>",
    "video_url": "<string>",
    "chain": {
      "id": "<string>",
      "@type": "ZerionChainRef",
      "name": "<string>",
      "image": "<string>",
      "is_testnet": true
    },
    "collection": {
      "@type": "ZerionNftCollection",
      "id": "<string>",
      "name": "<string>",
      "image": "<string>",
      "floor_price": 123,
      "floor_price_symbol": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
address
string
required

Wallet address: an EVM 0x address or an ENS / identity name

Examples:

"0xd8da6bf26964af9d7eed9e03e53415d37aa96045"

"vitalik.eth"

count
integer
required

Max number of NFTs to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
currency
enum<string>
default:usd

Currency to denominate NFT values in

Available options:
usd,
eur,
gbp,
jpy,
aud,
cad,
chf,
cny,
inr,
krw,
rub,
brl,
try,
btc,
eth
sort
enum<string>
default:floor_price_high

Sort order

Available options:
floor_price_high,
floor_price_low
chains
enum<string>[] | null

Filter NFTs to these blockchain networks

Available options:
ethereum,
tron,
binance-smart-chain,
base,
arbitrum,
plasma,
ink,
avalanche,
polygon,
monad,
optimism,
mantle,
katana,
berachain,
xdai,
megaeth,
sei,
okbchain,
linea,
fraxtal,
blast,
unichain,
sonic,
celo,
zksync-era,
scroll,
abstract,
ronin,
bob,
xinfin-xdc,
soneium,
fantom,
cronos-zkevm,
manta-pacific,
aurora,
taiko,
metis-andromeda,
ape,
mode,
opbnb,
somnia,
lisk,
tomochain,
polynomial,
polygon-zkevm,
0g,
lens,
gravity-alpha,
zora,
swellchain,
redstone,
astar-zkevm,
rari,
degen,
cyber,
hyperevm,
solana,
tempo,
wonder,
world,
zero,
zkcandy,
zklink-nova,
re-al

Response

Successful Response

id
string
required
@type
string
default:ZerionNftPosition
name
string | null
contract_address
string | null
token_id
string | null
interface
string | null
is_spam
boolean | null
amount
integer | null
value
number | null
image
string | null
video_url
string | null
chain
object
collection
object