Skip to main content

List All CATs

This endpoint allows you to fetch a comprehensive list of all Chia Asset Tokens (CATs) in the Chia ecosystem.

Endpoint

GET https://api.spacescan.io/cats

Parameters

ParameterTypeRequiredDefaultDescription
include_pricebooleanNofalseInclude price information
currencystringNoUSDCurrency for price conversion (e.g., USD, EUR)
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/cats?include_price=true&currency=USD" \
-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
statusstringSuccess or failure status
catsarrayArray of CAT objects

CAT Object Fields

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
tagsarrayArray of category tags
twitterstringTwitter profile URL (null if not set)
discordstringDiscord server URL (null if not set)
websitestringOfficial website URL (null if not set)
price_xchnumberPrice in XCH (only if include_price=true)
price_[currency]numberPrice in specified currency (only if include_price=true)

Example Response

{
"status": "success",
"cats": [
{
"asset_id": "a628c1c2c6fcb74d53746157e438e108eab5c0bb3e5c80ff9b1910b3e4832913",
"token_id": "tkn1c2c6fcb74d53746157e438e108eab5c0bb3e5c80ff9b1910b3e4832913",
"name": "Example Token",
"description": "An example CAT token",
"symbol": "EXT",
"preview_url": "https://assets.spacescan.io/cat/example-token.png",
"tags": ["defi", "gaming"],
"twitter": "https://twitter.com/exampletoken",
"discord": "https://discord.gg/exampletoken",
"website": "https://example.com",
"price_xch": 0.5,
"price_usd": 25.50
}
]
}

Error Responses

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