Get NFT data
GET/v1/accounts/:account_id/nft
Get NFT data
This endpoint retrieves metadata for a NFT associated with a given account ID. It accepts optional parameters such as token_address, token_id, and network_id. The response includes detailed NFT information including its attributes, ownership details, and collection data. Access to this endpoint requires proper authentication and authorization checks to ensure the requesting user has access to the specified account.
Request
Path Parameters
account_id uuidrequired
Account id
Query Parameters
token_address string
Token address
token_id string
Token id
network_id string
Network id
Responses
- 200
- 403
- 404
- 500
Ok
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
chainId int32nullable
contractType stringrequired
items object[]required
amount stringrequired
blockNumber stringrequired
blockNumberMinted stringrequired
lastMetadataSync stringrequired
lastTokenUriSync stringrequired
metadata stringrequired
minterAddress stringrequired
normalizedMetadata objectrequired
animationUrl stringnullable
attributes object[]required
description stringnullable
externalLink stringnullable
image stringnullable
name stringnullable
ownerOf stringrequired
tokenHash stringrequired
tokenId stringrequired
tokenUri stringrequired
name stringnullable
possibleSpam booleanrequired
symbol stringnullable
tokenAddress stringrequired
verifiedCollection booleanrequired
{
"chainId": 0,
"contractType": "string",
"items": [
{
"amount": "string",
"blockNumber": "string",
"blockNumberMinted": "string",
"lastMetadataSync": "string",
"lastTokenUriSync": "string",
"metadata": "string",
"minterAddress": "string",
"normalizedMetadata": {
"animationUrl": "string",
"attributes": [
{
"display_type": 0,
"max_value": 0,
"order": 0,
"trait_count": 0,
"trait_type": "string"
}
],
"description": "string",
"externalLink": "string",
"image": "string",
"name": "string"
},
"ownerOf": "string",
"tokenHash": "string",
"tokenId": "string",
"tokenUri": "string"
}
],
"name": "string",
"possibleSpam": true,
"symbol": "string",
"tokenAddress": "string",
"verifiedCollection": true
}
Forbidden
- application/json
- Schema
Schema
string
Not Found
- application/json
- Schema
Schema
string
Internal Server Error
- application/json
- Schema
Schema
string
Loading...