# 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. Endpoint: GET /user/{address}/nfts/collections Version: 1.0.0 ## Header parameters: - `Authorization` (string, required) The JWT access token that authorizes the request Example: "my-jwt-access-token" ## Path parameters: - `address` (string, required) The address to query NFT collections. Supported addresses include EVM, Solana and Bitcoin. Example: 1.0392900530713021e+47 ## Query parameters: - `symbols` (string) 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. Example: "ETH,MATIC,SOL" ## Response 200 fields (application/json): - `SYMBOL` (array) - `SYMBOL.category` (string) Type of collection Example: "art" - `SYMBOL.collectionId` (string) The ID of the collection, usually a contract address Example: 4660 - `SYMBOL.collectionImageUrl` (string) The NFT collection image URL (if available) Example: "https://path/to/collection/image" - `SYMBOL.contractAddresses` (array) Example: [4660] - `SYMBOL.description` (string) Description of the collection Example: "Collection description" - `SYMBOL.floorPrice` (array) - `SYMBOL.floorPrice.marketPlaceName` (string) Marketplace name Example: "OpenSea" - `SYMBOL.floorPrice.marketPctChange24Hr` (number) Percent change over the past 24 hours Example: -1.74 - `SYMBOL.floorPrice.history` (array) - `SYMBOL.floorPrice.history.timestamp` (string) Time associated with the floor price history value Example: "2024-02-14T13:00:00.000Z" - `SYMBOL.floorPrice.history.value` (number) Value in native currency Example: 123 - `SYMBOL.floorPrice.valueUsd` (string) Formatted floor UDS price of the NFT collection Example: "$25.00" - `SYMBOL.floorPrice.valueUsdAmt` (number) Floor USD price of the NFT collection Example: 25 - `SYMBOL.latestAcquiredDate` (string) Date of most recent collection NFT acquired by this owner Example: "native" - `SYMBOL.name` (string) Collection name Example: "Unstoppable Domains" - `SYMBOL.nftIds` (array) Example: ["0x1234/1"] - `SYMBOL.ownedCount` (number) Number of NFTs in the collection held by owner Example: 10 - `SYMBOL.totalOwners` (number) Total number of unique owner addresses for this collection Example: 10 - `SYMBOL.totalSupply` (number) Total number of NFTs in the collection Example: 200 - `SYMBOL.totalValueUsd` (string) Formatted USD floor price value of the collection NFTs held by this owner Example: "$50.00" - `SYMBOL.totalValueUsdAmt` (number) Floor USD price value of the collection NFTs held by this owner Example: 50 ## Response 404 fields