Skip to main content

Get Token Holders

This endpoint allows you to fetch the list of holders for a specific CAT (Chia Asset Token).

Endpoint

GET https://api.spacescan.io/token/holders/{asset_id}

Parameters

ParameterTypeDescription
asset_idstringThe unique identifier of the CAT
Free API

Use api.spacescan.io for free tier access. See our API Plans for rate limits and features.

Pro API

Use pro-api.spacescan.io with your API key in the x-api-key header. See our API Plans for details.

curl -X GET "https://pro-api.spacescan.io/token/holders/{asset_id}" \
-H "x-api-key: YOUR_API_KEY"

Live API Test

Request Example

Response

Failed to load API response. Please try again later.

Response Schema

FieldTypeDescription
statusstringThe status of the API request
tokensarrayList of CAT holders
next_cursornumberPagination cursor for the next page
total_countstringTotal holders count

Holder Object

Each holder in the tokens array contains:

FieldTypeDescription
addressstringThe holder's address
amountstringThe amount of CAT tokens held

Error Responses

HTTP Status CodeMeaning
400Bad Request -- Invalid parameters
429Too Many Requests -- Rate limit exceeded
500Internal Server Error
503Service Unavailable