Get Non Fungible NFT Token Balances
GET/nft-assets/:address
Get Non Fungible NFT Token Balances
Request
Details
Path Parameters
address stringrequired
The wallet address to query for associated NFTs.
Details
Query Parameters
apiKey stringrequired
Your API key to authenticate requests.
limit integer
Possible values: >= 1
and <= 100
Default value: 100
The maximum number of NFTs to return per request. Default is 100.
cursor string
Cursor for pagination. Use the nextCursor from the previous response to fetch the next page.
Responses
- 200
- 403
OK
- application/json
- Schema
- Example (from schema)
Details
Schema
Array [
]
Details
data
object
Details
account
object
address string
Details
collectibles
object[]
Details
collection
object
collectionAddress string
collectionName string
collectionSymbol string
created string
Details
creator
object
id string
description string
descriptorUri string
id string
imageURL string
name string
Details
owner
object
id string
tokenId string
nextCursor stringnullable
Cursor to use for fetching the next page of results. Null if there are no more results.
{
"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"
}
Access to the resource is forbidden.
- application/json
- Schema
- Example (from schema)
Details
Schema
statusCode integer
errorMessage string
error string
{
"statusCode": 0,
"errorMessage": "string",
"error": "string"
}
Loading...