Token Detail
Get detailed information about a token including links, market data, and developer activity.
| Property | Value |
|---|---|
| Endpoint | /api/token/detail |
| Method | POST |
| Credits | 2 |
Request Body
tokenNamestringToken name. Case-insensitive. At least one of tokenName/tokenSymbol is required.
tokenSymbolstringToken symbol. Case-insensitive. At least one of tokenName/tokenSymbol is required.
Example
curl -X POST https://kittyhome.pages.dev/api/token/detail \
-H "Authorization: Bearer kk_your_key" \
-H "Content-Type: application/json" \
-d '{"tokenName": "Bitcoin"}'
Response Data
{
"id": "bitcoin",
"symbol": "btc",
"name": "Bitcoin",
"categories": ["Cryptocurrency"],
"links": [{ "label": "homepage", "url": "..." }],
"marketCapRank": 1,
"developerData": { ... },
"listingMarkets": ["Binance", "Coinbase"],
"usdtTickersSummary": { ... }
}