GET
/
{chainName}
/
v1
/
nft
/
collections
/
{address}
/
tokens
/
{tokenID}
curl --request GET \
  --url https://data-api.cloud.ormi.dev/{chainName}/v1/nft/collections/{address}/tokens/{tokenID}
{
  "address": 6.4956264143494794e+47,
  "balance": "2000000000000000000",
  "ercType": "ERC-721",
  "metadata": {
    "attributes": "<string>",
    "decimals": 123,
    "description": "<string>",
    "externalUrl": "<string>",
    "imageUri": "<string>",
    "mintedBlockNumber": 13522365,
    "mintedTimestamp": "2023-10-09 07:57:06",
    "name": "Wrapped AVAX",
    "symbol": "WAVAX"
  },
  "tokenId": "<string>",
  "tokenUri": "<string>"
}

Path Parameters

address
string
required

Contract address.

tokenID
string
required

Token ID of the contract.

chainName
string
required

Name of the blockchain (e.g., ethereum, polygon, bsc)

Response

200 - application/json
NFT token with metadata.
address
string
required

Contract address of the ERC-721 token.

Example:

6.4956264143494794e+47

ercType
string
required

ERC standard type.

Example:

"ERC-721"

metadata
object
required
tokenId
string
required

Unique identifier of the token.

tokenUri
string
required

URI pointing to the token metadata.

balance
string

balance of NFT

Example:

"2000000000000000000"