GET
/
v1
/
evm
/
collectibles
/
{address}
Get EVM Collectibles
curl --request GET \
  --url https://api.sim.dune.com/v1/evm/collectibles/{address} \
  --header 'X-Sim-Api-Key: <x-sim-api-key>'
{
  "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
  "entries": [
    {
      "contract_address": "0x5d28dcf2fbbd3738c0ebe9de03eafcb4ec33015d",
      "token_standard": "ERC1155",
      "token_id": "1",
      "chain": "ethereum",
      "chain_id": 1,
      "name": "Beeplfg",
      "description": "Beeplfg",
      "symbol": "CRAP",
      "image_url": "https://api.sim.dune.com/v1/evm/collectible/image/1/0x5d28dcf2fbbd3738c0ebe9de03eafcb4ec33015d/1",
      "last_sale_price": "0",
      "metadata": {
        "uri": "ipfs://QmcnkkMnfL7fugsyrZPEZhPGciLMoo9kwWt1cg4QHLLx3w/0",
        "attributes": [
          {
            "key": "Color",
            "value": "255, 43, 163"
          },
          {
            "key": "Stance",
            "value": "Greased"
          }
        ]
      },
      "balance": "8",
      "last_acquired": "2025-08-10T03:58:59Z"
    },
    {
      "contract_address": "0x344299dd2af8f81246dcb7b3368c6b9b5ddad4f6",
      "token_standard": "ERC1155",
      "token_id": "1",
      "chain": "bnb",
      "chain_id": 56,
      "name": "launchspx org",
      "balance": "1",
      "last_acquired": "2025-08-11T04:22:52Z"
    },
    {
      "contract_address": "0x3c020f2124b84bd079985c77f93d4a750512448c",
      "token_standard": "ERC721",
      "token_id": "5132",
      "chain": "ethereum",
      "chain_id": 1,
      "name": "Ethereum Puppet #5132",
      "description": "Ethereum Puppet #5132",
      "symbol": "PUPPET",
      "image_url": "https://api.sim.dune.com/v1/evm/collectible/image/1/0x3c020f2124b84bd079985c77f93d4a750512448c/5132",
      "last_sale_price": "0.00005",
      "metadata": {
        "uri": "https://www.ethereumpuppets.com/metadata/5132",
        "attributes": [
          {
            "key": "Background",
            "value": "Mustard"
          },
          {
            "key": "Shirt",
            "value": "Gambler"
          }
        ]
      },
      "balance": "1",
      "last_acquired": "2025-08-09T23:07:47Z"
    },
    {
      "contract_address": "0xa18cf489cf710759f13ac6c8596823dba85354e2",
      "token_standard": "ERC721",
      "token_id": "24",
      "chain": "optimism",
      "chain_id": 10,
      "balance": "1",
      "last_acquired": "2025-08-07T14:51:57Z"
    }
  ],
  "next_offset": "opaque-pagination-token",
  "request_time": "2025-08-13T09:40:53Z",
  "response_time": "2025-08-13T09:40:53Z"
}
Type=collectibles Web The Collectibles API provides information about NFTs (ERC721 and ERC1155 tokens) owned by a specific address on supported EVM blockchains.

Headers

X-Sim-Api-Key
string
required

Used for authenticating requests. Provide an API key with a purpose of Sim API. See Authentication.

Path Parameters

address
string<address>
default:0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045
required

The wallet address to get collectibles for.

Query Parameters

chain_ids
string

Filter by chain(s). Accepts a single numeric chain ID (e.g. ?chain_ids=1), a single chain name (e.g. ?chain_ids=ethereum), or a comma-separated list of either (e.g. ?chain_ids=1,137 or ?chain_ids=ethereum,polygon). If omitted, results include collectibles from chains with the "default" tag for the address. See the Supported Chains — Tags section.

offset
string

Pagination cursor. Use the next_offset value from the previous response to get the next page. Omit to fetch the first page.

limit
integer
default:250

Maximum entries per page for collectibles. Default is 250 when not provided. Values above 2500 are reduced to 2500. If fewer entries exist than the limit, only the available entries are returned.

Required range: 1 <= x <= 2500

Response

A list of collectibles for the specified address.

address
string<address>
required

The wallet address for which collectibles are being reported.

entries
object[]
required

A list of collectible entries.

request_time
string<date-time>
required

Timestamp of when the request was received.

response_time
string<date-time>
required

Timestamp of when the response was generated.

next_offset
string

Use this value as the offset in your next request to continue pagination. Not included when there are no more entries.