Token Search
Search token candidates by exact token symbol or token name.
| Property | Value |
|---|---|
| Endpoint | /api/token/search |
| Method | POST |
| Credits | 1 |
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 -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
{
"items": [
{
"id": "pepe",
"symbol": "PEPE",
"name": "Pepe",
"platforms": {
"ethereum": "0x6982508145454Ce325dDbE47a25d4ec3d2311933"
}
}
]
}