Skip to main content

Get CAT Transactions

This endpoint allows you to fetch transaction history for a specific Chia Asset Token (CAT). Track transfers, trades, and movements of any CAT in the Chia ecosystem, providing valuable insights into token circulation and trading patterns. This is particularly useful for token analytics, market analysis, and tracking token distribution.

Endpoint

GET https://api.spacescan.io/cat/transactions/{asset_id}

Parameters

ParameterTypeDescription
asset_idstringThe unique identifier (TAIL hash) 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/cat/transactions/{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
dataarrayArray of transaction objects

Transaction Object

Each transaction in the data array contains:

FieldTypeDescription
coin_namestringUnique identifier for the transaction
coin_parentstringParent coin identifier
amountstringAmount of CAT tokens transferred
typestringTransaction type (e.g., "CAT2")
timestampnumberUnix timestamp of the transaction
confirmed_timestringISO timestamp of confirmation
spend_timestringISO timestamp when spent (null if unspent)
confirmed_txn_typenumberType of confirmation transaction
senderobjectInformation about the sender
sender.addressstringSender's address
receiverobjectInformation about the receiver
receiver.addressstringReceiver's address
catobjectInformation about the CAT
cat.idstringCAT identifier (TAIL hash)
cat.namestringName of the CAT
cat.symbolstringSymbol/ticker of the CAT
cat.descriptionstringDescription of the CAT

Error Responses

HTTP Status CodeMeaning
400Bad Request -- Your request is invalid.
404Not Found -- The specified CAT could not be found.
429Too Many Requests -- You're requesting too many times! Slow down!
500Internal Server Error -- We had a problem with our server. Try again later.
503Service Unavailable -- We're temporarily offline for maintenance. Please try again later.