Get NFTs by wallet address
GET/collectibles/:address
Retrieves NFTs associated with a specific wallet address, including details like creation time, token ID, and collection information.
Request
Path Parameters
address stringrequired
The wallet address to query for associated NFTs.
Query Parameters
apiKey stringrequired
Your API key to authenticate requests.
Responses
- 200
- 403
A list of NFTs associated with the wallet address.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object
account object
id string
address string
collectibles object[]
id string
created string
tokenId string
description string
descriptorUri string
name string
imageURL string
creator object
id string
owner object
id string
collection object
collectionName string
collectionSymbol string
collectionAddress string
{
"data": {
"account": {
"id": "string",
"address": "string",
"collectibles": [
{
"id": "string",
"created": "string",
"tokenId": "string",
"description": "string",
"descriptorUri": "string",
"name": "string",
"imageURL": "string",
"creator": {
"id": "string"
},
"owner": {
"id": "string"
},
"collection": {
"collectionName": "string",
"collectionSymbol": "string",
"collectionAddress": "string"
}
}
]
}
}
}
Access to the resource is forbidden.
- application/json
- Schema
- Example (from schema)
Schema
statusCode integer
errorMessage string
error string
{
"statusCode": 0,
"errorMessage": "string",
"error": "string"
}
Loading...