Skip to main content
GET
/
v2
/
api
Get Address ERC721 Token Inventory by Contract
curl --request GET \
  --url https://api.etherscan.io/v2/api
{
  "status": "1",
  "message": "OK",
  "result": [
    {
      "TokenAddress": "0xed5af388653567af2f388e6224dc7c4b3241c544",
      "TokenId": "453"
    },
    {
      "TokenAddress": "0xed5af388653567af2f388e6224dc7c4b3241c544",
      "TokenId": "8160"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.etherscan.io/llms.txt

Use this file to discover all available pages before exploring further.

This is a PRO endpoint, available to the Standard Plan and above
This endpoint is throttled to 2 calls/second regardless of API Pro tier.

Query Parameters

apikey
string
default:"YourApiKeyToken"
Your Etherscan API key.
chainid
string
default:"1"
Chain ID to query, eg 1 for Ethereum, 8453 for Base from our supported chains.
module
string
default:"account"
Set to account for this endpoint.
action
string
default:"addresstokennftinventory"
Set to addresstokennftinventory for this endpoint.
address
string
default:"0x123432244443b54409430979df8333f9308a6040"
Address to check for inventory.
contractaddress
string
default:"0xed5af388653567af2f388e6224dc7c4b3241c544"
ERC-721 token contract address to filter by.
page
integer
default:"1"
Page number for pagination.
offset
integer
default:"100"
Number of records per page. Use the page parameter for subsequent records.
{
  "status": "1",
  "message": "OK",
  "result": [
    {
      "TokenAddress": "0xed5af388653567af2f388e6224dc7c4b3241c544",
      "TokenId": "453"
    },
    {
      "TokenAddress": "0xed5af388653567af2f388e6224dc7c4b3241c544",
      "TokenId": "8160"
    }
  ]
}