Token Detail

Get detailed information about a token including links, market data, and developer activity.

PropertyValue
Endpoint/api/token/detail
MethodPOST
Credits2

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
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

JSON
{ "id": "bitcoin", "symbol": "btc", "name": "Bitcoin", "categories": ["Cryptocurrency"], "links": [{ "label": "homepage", "url": "..." }], "marketCapRank": 1, "developerData": { ... }, "listingMarkets": ["Binance", "Coinbase"], "usdtTickersSummary": { ... } }