Vinci NFT API
SDKDocument Hub
  • Introduction
  • Get Started
  • NFT API Endpoints
    • Get NFTs By Wallet
    • Get NFTs By Contract
    • Search NFTs
    • Get NFT Metadata
    • Get NFT Floor Price
    • Get Owners By Contract
    • Get Owners By Token Id
    • Get Collections By Wallet
    • Get Collection Metadata
    • Get Transfers By Wallet
    • Get Transfers By Contract
    • Get Transfers By Block
    • Get Transfers From A Block To A Block
Powered by GitBook
On this page
  1. NFT API Endpoints

Get NFT Metadata

Get NFT data, including metadata (where available), for the given NFT token ID and contract address.

PreviousSearch NFTsNextGet NFT Floor Price

Last updated 2 years ago

Get NFT Metadata

get

Get NFT data, including metadata (where available), for the given NFT token ID and contract address.

Query parameters
chainall ofRequired

The chain to query

string · enumOptional

An enumeration.

Possible values:
formatall ofOptional

The format of the token ID

Default: decimal
string · enumOptional

An enumeration.

Possible values:
addressstringRequired

The address

token_idstringRequired

The ID of the token

Responses
200
Successful Response
application/json
404
ErrorMessage
application/json
422
HTTPValidationError
application/json
get
GET /api/nfts/metadata?chain=eth&address=text&token_id=text HTTP/1.1
Host: 
Accept: */*
{
  "token_address": "text",
  "name": "",
  "symbol": "",
  "contract_type": "text",
  "token_id": "",
  "amount": "",
  "token_hash": "",
  "owner_of": "",
  "block_number_minted": "text",
  "block_number": "text",
  "token_uri": "",
  "last_token_uri_sync": "",
  "last_metadata_sync": "",
  "minter_address": "",
  "metadata": ""
}