Skip to main content

Get Token Activities

This endpoint allows you to fetch activity history for a specific CAT (Chia Asset Token), including transfers, mints, burns, and melts.

Endpoint

GET https://api.spacescan.io/token/activity

Parameters

ParameterTypeRequiredDefaultDescription
asset_idstringNo-Filter activities by CAT asset ID
typestringNotransferActivity type (transfer/mint/burn/melt)
countnumberNo100Number of records to return (max: 100)
pagenumberNo1Page number for pagination
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/activity?asset_id=YOUR_asset_id&type=transfer" \
-H "x-api-key: YOUR_API_KEY"

Live API Test

Request Examples

Response

Failed to load API response. Please try again later.

Response Schema

FieldTypeDescription
statusstringThe status of the API request
tokensarrayList of token activities

Token Activity Object

FieldTypeDescription
coin_idstringUnique identifier for the coin
timestringTimestamp of the activity
heightnumberBlock height of the transaction
amountstringAmount of tokens involved in the activity
fromstringSource address
tostringDestination address
cat_idstringCAT asset identifier

Error Responses

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