v1

latestOpenAPI 3.0.02026-07-26268286602.5 KB
tokens

Retrieve detailed information about a specific NFT

Retrieves detailed information about a specific NFT instance, identified by its token contract address and token ID.

get/{chain_id}/api/v2/tokens/{address_hash_param}/instances/{token_id_param}

Path parameters

address_hash_paramstring required

Address hash in the path

token_id_paramstring nullable required

Token ID for ERC-721/1155/404 tokens

chain_idstring required

The ID of the blockchain

Response

Detailed information about the specified NFT instance.

animation_media_type'image' | 'video' | 'html' nullable

Media type category of the token instance animation URL

animation_urlstring uri nullable required
external_app_urlstring uri nullable required
idstring required
image_media_type'image' | 'video' | 'html' nullable

Media type category of the token instance image URL

image_urlstring uri nullable required
is_uniqueboolean nullable required
media_typestring nullable required

Mime type of the media in media_url

media_urlstring uri nullable required
metadataobject nullable required
token_type'ERC-20' | 'ERC-721' | 'ERC-1155' | 'ERC-404' | 'ERC-7984'
valuestring nullable

Example response

{
  "animation_url": "https://example.com",
  "external_app_url": "https://example.com",
  "image_url": "https://example.com",
  "media_type": "image/png",
  "media_url": "https://example.com",
  "metadata": {
    "description": "Test",
    "image": "https://example.com/image.png",
    "name": "Test"
  },
  "token": {
    "icon_url": "https://example.com"
  }
}