Token Search

Search token candidates by exact token symbol or token name.

PropertyValue
Endpoint/api/token/search
MethodPOST
Credits1

Request Body

tokenSymbolstringExact token symbol. Case-insensitive. At least one of tokenSymbol/tokenName is required.
tokenNamestringExact token name. Case-insensitive. At least one of tokenSymbol/tokenName is required.

Example

curl
curl -X POST https://kittyhome.pages.dev/api/token/search \ -H "Authorization: Bearer kk_your_key" \ -H "Content-Type: application/json" \ -d '{"tokenSymbol": "PEPE"}'

Response Data

JSON
{ "items": [ { "id": "pepe", "symbol": "PEPE", "name": "Pepe", "platforms": { "ethereum": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" } } ] }