GET
/
{chainName}
/
v1
/
tokens
/
{tokenAddress}
/
holders
curl --request GET \
  --url https://data-api.cloud.ormi.dev/{chainName}/v1/tokens/{tokenAddress}/holders
[
  {
    "contract": {
      "address": "<string>",
      "decimals": 123,
      "erc_type": "<string>",
      "logoUri": "<string>",
      "name": "<string>",
      "symbol": "<string>"
    },
    "cursor": "<string>",
    "holders": [
      {
        "address": "<string>",
        "balance": "<string>",
        "percentage": 123,
        "raw_balance": "<string>"
      }
    ],
    "holders_count": 123,
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Path Parameters

tokenAddress
string
required

A token 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

OK

The response is of type object[].