Token Advanced Info
Get advanced token metadata including LP burn percentage, creator info, and risk control level.
| Property | Value |
|---|---|
| Endpoint | /api/token/advanced |
| Method | POST |
| Credits | 2 |
Request Body
chainstring, requiredChain name or ID
tokenAddressstring, requiredToken contract address
Example
curl -X POST https://kittyhome.pages.dev/api/token/advanced \
-H "Authorization: Bearer kk_your_key" \
-H "Content-Type: application/json" \
-d '{"chain": "ethereum", "tokenAddress": "0x..."}'
Response Data
{
"totalFee": "300",
"lpBurnedPercent": "0",
"isInternal": false,
"protocolId": "1",
"progress": "100",
"tokenTags": ["defi"],
"createTime": "1690000000",
"creatorAddress": "0x...",
"riskControlLevel": "1",
"top10HoldPercent": "45.67"
}