Holders by BTKN

This endpoint is commonly used to pass a BTKN ID, and get the full list of wallets holding the BTKN, and the amount they hold.

get

Get holders for a specific Spark BTKN token.

Authorizations
Path parameters
identifierstringRequired

BTKN token identifier

Example: 691c8f8a06274c6d17956e2e4115935d501d85ee569319d20b50e1fe4195b33d
Query parameters
offsetnumberOptionalDefault: 0
limitnumber · max: 25OptionalDefault: 10
Responses
200

Default Response

application/json
get
GET /v1/spark/tokens/{identifier}/holders HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
  "offset": 1,
  "limit": 1,
  "total": 1,
  "items": [
    {
      "address": "text",
      "balance": "text",
      "pubkey": "text",
      "valueUsd": 1,
      "percentage": 1
    }
  ]
}

Last updated