Skip to main content
GET
/
nft-assets
/
{address}
Get Non Fungible NFT Token Balances
curl --request GET \
  --url https://api.fuse.io/api/v0/balances/nft-assets/{address}
{
  "data": {
    "account": {
      "address": "<string>",
      "collectibles": [
        {
          "collection": {
            "collectionAddress": "<string>",
            "collectionName": "<string>",
            "collectionSymbol": "<string>"
          },
          "created": "<string>",
          "creator": {
            "id": "<string>"
          },
          "description": "<string>",
          "descriptorUri": "<string>",
          "id": "<string>",
          "imageURL": "<string>",
          "name": "<string>",
          "owner": {
            "id": "<string>"
          },
          "tokenId": "<string>"
        }
      ]
    }
  },
  "nextCursor": "<string>"
}

Path Parameters

address
string
required

The wallet address to query for associated NFTs.

Query Parameters

apiKey
string
required

Your API key to authenticate requests.

limit
integer
default:100

The maximum number of NFTs to return per request. Default is 100.

Required range: 1 <= x <= 100
cursor
string

Cursor for pagination. Use the nextCursor from the previous response to fetch the next page.

Response

OK

data
object
nextCursor
string | null

Cursor to use for fetching the next page of results. Null if there are no more results.