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/14b40962dfef81d954ac0d92b51ec21ce7acd8c62dd9fef9303aa51c615cb495"

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

Response Schema

FieldTypeDescription
statusstringSuccess or failure status
infoobjectBasic token information
info.asset_idstringThe unique identifier of the CAT
info.token_idstringToken ID in tkn format
info.namestringThe name of the CAT
info.descriptionstringDescription of the CAT
info.symbolstringTrading symbol of the CAT
info.preview_urlstringURL to the CAT's logo image
info.tagsstringCategory tags
info.twitterstringTwitter profile URL (null if not set)
info.discordstringDiscord server URL (null if not set)
info.websitestringOfficial website URL (null if not set)
info.typestringToken type (e.g., "CAT2")
priceobjectPrice information (if requested)
price.price_[currency]numberPrice in specified currency
price.price_xchnumberPrice in XCH
supplyobjectSupply information (if requested)
supply.total_supplynumberTotal token supply
supply.burnednumberNumber of tokens burned
supply.meltednumberNumber of tokens melted
supply.circulating_supplynumberCurrent circulating supply

Example Response

{
"status": "success",
"info": {
"asset_id": "14b40962dfef81d954ac0d92b51ec21ce7acd8c62dd9fef9303aa51c615cb495",
"token_id": "tkn1zj6qjckla7qaj49vpkft28kzrnn6ekxx9hvla7fs82j3cc2ukj2ssa84km",
"name": "LLC Burn Token",
"description": "LLC Burn Token can only be acquired by burning a Little Lambo Coin...",
"symbol": "LLBT",
"preview_url": "https://assets.spacescan.io/cat/f5cd9dccc98c1fd4f32b599324b6dd938c793c0e50af7581195aee603277bad8.webp",
"tags": "meme",
"twitter": "https://twitter.com/LittleLamboCoin",
"discord": "https://discord.gg/Ew96DzCxc7",
"website": "https://littlelambocoin.com/llc-burn-token",
"type": "CAT2"
},
"price": {
"price_usd": 0.02624364935709997,
"price_xch": 0.001225206519248
},
"supply": {
"total_supply": 1000000000,
"burned": 1,
"melted": 0,
"circulating_supply": 999999999
}
}