GET
/
form
/
v1
/
nft
/
collections
/
{address}
/
tokens
/
{tokenID}
curl --request GET \
  --url https://data-api.cloud.ormi.dev/form/v1/nft/collections/{address}/tokens/{tokenID}
{
  "address": "<string>",
  "balance": "<string>",
  "ercType": "<string>",
  "metadata": {
    "attributes": "<string>",
    "decimals": 123,
    "description": "<string>",
    "externalUrl": "<string>",
    "imageUri": "<string>",
    "mintedBlockNumber": 123,
    "mintedTimestamp": "2023-11-07T05:31:56Z",
    "name": "<string>",
    "symbol": "<string>"
  },
  "tokenId": "<string>",
  "tokenUri": "<string>"
}

Path Parameters

address
string
required

Contract address.

tokenID
string
required

Token ID of the contract.

Response

200 - application/json
NFT token with metadata.

The response is of type object.