Get NFT metadata by token id
Get NFT metadata by token id
Path Parameters
address string required
The address of contract
token_id string required
The ID of the token
Example: 99
Responses
- 200
Successful
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
collection_address string required
The address of the NFT
collection_type string required
The type of the NFT
token_id string required
The id of the NFT
external_url string required
The external_url of the NFT
image_data string required
The image_data of the NFT
background_color string required
The background_color of the NFT
youtube_url string required
The youtube_url of the NFT
synced_at number required
Timestamp synced metadata
name string required
The name or title of the NFT
description string required
A detailed description of the NFT
image string required
The URL of the NFT's image
external_link string required
A link to additional information
animation_url string required
An animated version of the NFT's image
attributes object[] required
An animated version of the NFT's image
trait_type string required
The trait title or descriptor
value string required
The value of the attribute
max_value number required
For numeric values, the upper range
trait_count number required
The number of possible values for this trait
order number required
Order the trait should appear in the attribute list
{
"collection_address": "string",
"collection_type": "string",
"token_id": "string",
"external_url": "string",
"image_data": "string",
"background_color": "string",
"youtube_url": "string",
"synced_at": 0,
"name": "string",
"description": "string",
"image": "string",
"external_link": "string",
"animation_url": "string",
"attributes": [
{
"trait_type": "string",
"value": "string",
"max_value": 0,
"trait_count": 0,
"order": 0
}
]
}
Loading...