GET
/
v2
/
address
/
{address}
/
nft-holding
curl --request GET \
  --url https://api.getnimbus.io/v2/address/{address}/nft-holding
[
  {
    "owner": "<string>",
    "nativeToken": {
      "name": "<string>",
      "cmcId": 123,
      "cmc_slug": "<string>",
      "cgId": "<string>",
      "symbol": "<string>",
      "decimals": 123
    },
    "collection": {
      "description": "<string>",
      "externalUrl": "<string>",
      "id": "<string>",
      "imageUrl": "<string>",
      "name": "<string>",
      "totalItems": 123,
      "chain": "<string>",
      "verified": true,
      "scam": true
    },
    "collectionId": "<string>",
    "tokens": [
      {
        "royalty": 123,
        "imageUrl": "<string>",
        "tokenId": "<string>",
        "contractAddress": "<string>",
        "name": "<string>",
        "rarityScore": 123,
        "rank": "<string>",
        "price": 123,
        "cost": 123
      }
    ],
    "floorPrice": 123,
    "marketPrice": 123,
    "profit": {
      "realizedPnL": 123,
      "unrealizedPnL": 123
    }
  }
]

Path Parameters

address
string
required

The address to get NFT holding information for

Query Parameters

chain
enum<string>

The blockchain to query (default is "ALL")

Available options:
BTC,
SOL,
SUI,
TON,
ETH,
FANTOM,
RON,
BNB,
OP,
AVAX,
MATIC,
ARB,
BASE,
SCROLL,
ZKSYNC,
ALL
includePnl
boolean
default:
false

Include profit and loss information

Response

200
application/json
Successful response with NFT holding information
owner
string

The owner address of the NFTs

nativeToken
object
collection
object
collectionId
string
tokens
object[]
floorPrice
number
marketPrice
number
profit
object