v1

latestOpenAPI 3.0.0raw.githubusercontent.com2026-04-107095124.5 KB
Wallet data endpoints

Retrieve NFT collections

Retrieves NFT collections owned by the provided wallet address. Collections are filtered by spam using criteria such as floor price, trading volume and holder distribution.

get/user/{address}/nfts/collections

Path parameters

addressstring required

The address to query NFT collections. Supported addresses include EVM, Solana and Bitcoin.

Query parameters

symbolsstring

Comma separated list of ticker symbols to query NFT collections data. For example an EVM address may be provided, which may specify multiple chains. The symbols=MATIC would indicate only Polygon data is requested. Omitting the symbols parameter will return data for all blockchains associated with the address.

Headers

Authorizationstring required

The JWT access token that authorizes the request

Response

Set of NFT collections indexed by symbol

Example response

{
  "SYMBOL": [
    {
      "category": "art",
      "collectionImageUrl": "https://path/to/collection/image",
      "description": "Collection description",
      "floorPrice": [
        {
          "marketPlaceName": "OpenSea",
          "marketPctChange24Hr": -1.74,
          "history": [
            {
              "timestamp": "2024-02-14T13:00:00.000Z",
              "value": 123
            }
          ],
          "valueUsd": "$25.00",
          "valueUsdAmt": 25
        }
      ],
      "latestAcquiredDate": "native",
      "name": "Unstoppable Domains",
      "nftIds": [
        "0x1234/1"
      ],
      "ownedCount": 10,
      "totalOwners": 10,
      "totalSupply": 200,
      "totalValueUsd": "$50.00",
      "totalValueUsdAmt": 50
    }
  ]
}