Skip to main content

Get Token Information

This endpoint allows you to fetch detailed information about a specific CAT (Chia Asset Token).

Endpoint

GET https://api.spacescan.io/token/info/{token_id}

Parameters

ParameterTypeRequiredDefaultDescription
token_idstringYes-The unique identifier of the CAT
include_pricebooleanNofalseInclude price information
include_supplybooleanNofalseInclude supply information
currencystringNoUSDCurrency for price conversion
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/info/{token_id}?include_price=true&include_supply=true" \
-H "x-api-key: YOUR_API_KEY"

Live API Test

Request Examples

# Basic info
curl -X GET "https://api.spacescan.io/token/info/8c77de1427156b98fb15cce77d908f79bd69f6b4b8e3a60d8e051dac481b5365"

# With price and supply info
curl -X GET "https://api.spacescan.io/token/info/8c77de1427156b98fb15cce77d908f79bd69f6b4b8e3a60d8e051dac481b5365?include_price=true&include_supply=true&currency=USD"

Response

Failed to load API response. Please try again later.

Response Schema

FieldTypeDescription
statusstringThe status of the API request
infoobjectToken information object
priceobjectPrice information object
supplyobjectSupply information object

Info Object

FieldTypeDescription
asset_idstringThe unique identifier of the CAT
token_idstringToken ID in tkn format
namestringThe name of the CAT
descriptionstringDescription of the CAT
symbolstringTrading symbol of the CAT
preview_urlstringURL to the CAT's logo image
tagsstringCategory tags
twitterstringTwitter profile URL (null if not set)
discordstringDiscord server URL (null if not set)
websitestringOfficial website URL (null if not set)
typestringToken type (e.g., "CAT2")

Price Object (if requested)

FieldTypeDescription
[currency]stringPrice in specified currency (e.g., "usd": 0.02624364935709997)
xchstringPrice in XCH

Supply Object (if requested)

FieldTypeDescription
total_supplynumberTotal token supply
burnednumberNumber of tokens burned
meltednumberNumber of tokens melted
circulating_supplynumberCurrent circulating supply

Error Responses

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