GET
https://api.sim.dune.com
/
v1
/
evm
/
collectibles
/
{address}
curl --request GET \
  --url https://api.sim.dune.com/v1/evm/collectibles/{address} \
  --header 'X-Sim-Api-Key: <api-key>'
{
  "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
  "entries": [
    {
      "contract_address": "0x0000000000cf80e7cf8fa4480907f692177f8e06",
      "token_standard": "ERC721",
      "token_id": "73906452355594127029039375271145516945927406532858726769026903911185640775143",
      "chain": "ethereum",
      "chain_id": 1,
      "name": "NamefiNFT",
      "symbol": "NFNFT",
      "balance": "1"
    },
    {
      "contract_address": "0x01cde4e79913888e642300e705c283f1da0eadb8",
      "token_standard": "ERC1155",
      "token_id": "0",
      "chain": "ethereum",
      "chain_id": 1,
      "name": "manatoken.net",
      "symbol": "claim rewards on manatoken.net",
      "balance": "1"
    },
    {
      "contract_address": "0x0a41db66c8f94ec56b55357c92e4f1e66d8ba06",
      "token_standard": "ERC1155",
      "token_id": "1",
      "chain": "ethereum",
      "chain_id": 1,
      "name": null,
      "symbol": null,
      "balance": "1"
    }
  ],
  "next_offset": "KgAAAAAAAAAweGQ4ZGE2YmYyNjk2NGFmOWQ3ZWVkOWUwM2U1MzQxNWQzN2FhOTYwNDUBAAAAAAAAACoAAAAAAAAAMHg0OTVmOTQ3Mjc2NzQ5Y2U2NDZmNjhhYzhjMjQ4NDIwMDQ1Y2I3YjVlIAAAAAAAAAD7ygfi-RlYwIz6s5UYT_T8YI0_BgAAAAAAAHsAAAAnEAEAAAA",
  "request_time": "2025-05-21T05:49:41.456977Z",
  "response_time": "2025-05-21T05:49:41.831447Z"
}

The Collectibles API provides information about NFTs (ERC721 and ERC1155 tokens) owned by a specific address on supported EVM blockchains.

Authorizations

X-Sim-Api-Key
string
header
required

Path Parameters

address
string
required

The wallet address to get collectibles for.

Query Parameters

chain_ids
string

A comma-separated list of chain IDs (e.g., ?chain_ids=1,137) or chain names (e.g., ?chain_ids=ethereum,polygon) to filter collectibles by. If not provided, collectibles from all default chains for the address are returned. See Supported Chains for more information.

offset
string

The pagination cursor from the next_offset field of a previous response to fetch the next page of results. Omit this parameter to fetch the first page.

limit
integer
default:50

Maximum number of collectible entries to return per page.

Required range: 1 <= x <= 500

Response

200
application/json

A list of collectibles for the specified address.

The response is of type object.