GET
/
{chainName}
/
v1
/
nft
/
collections
/
{address}
/
tokens
curl --request GET \
  --url https://data-api.cloud.ormi.dev/{chainName}/v1/nft/collections/{address}/tokens
{
  "cursor": "<string>",
  "resultCount": 123,
  "tokens": [
    {
      "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.

chainName
string
required

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

Query Parameters

cursor
string

The cursor returned in previous response (for getting the next page).

limit
integer | null
default:100

Number of records to fetch

Required range: 1 <= x <= 100

Response

200 - application/json

A list of NFT tokens for an address.

The response is of type object.