Tokens
Get token details
Returns detailed information for a token.
GET
/
tokens
/
{token_address}
curl --request GET \
--url https://api.quantpilot.ai/tokens/{token_address} \
--header 'x-api-key: <api-key>'
{
"token_address": "0xabc123...",
"symbol": "BANKR",
"name": "Bankr",
"price": 50.21,
"market_cap": 20000000,
"followers": 21000,
"smart_followers": 180,
"impressions": 64199,
"smart_reach": 74726,
"post_engagement": 2200,
"smart_engagement": 150,
"top_kols": [
{
"kol_address": "0x111222...",
"handle": "@DeFiGuru",
"followers": 500000,
"engagement_rate": 0.08
}
],
"smart_follower_distribution": {
"whale_holders": 15,
"medium_holders": 150,
"small_holders": 1000
},
"top_posts": [
{
"post_id": "p1",
"token_address": "0xdef456...",
"title": "NEUR Partnership with XYZ",
"link": "https://social.example.com/neur/post/1",
"published_at": "2025-03-10T14:22:00Z",
"impressions": 30000,
"engagement": 1200,
"smart_engagement": 100
}
],
"holders_distribution": {
"top_10_holders": 35.2,
"top_50_holders": 60.1
},
"whale_accumulation_trend": "increasing"
}
Authorizations
API key for authentication
Path Parameters
Unique token address
Response
200 - application/json
Successful response
The response is of type object
.
curl --request GET \
--url https://api.quantpilot.ai/tokens/{token_address} \
--header 'x-api-key: <api-key>'
{
"token_address": "0xabc123...",
"symbol": "BANKR",
"name": "Bankr",
"price": 50.21,
"market_cap": 20000000,
"followers": 21000,
"smart_followers": 180,
"impressions": 64199,
"smart_reach": 74726,
"post_engagement": 2200,
"smart_engagement": 150,
"top_kols": [
{
"kol_address": "0x111222...",
"handle": "@DeFiGuru",
"followers": 500000,
"engagement_rate": 0.08
}
],
"smart_follower_distribution": {
"whale_holders": 15,
"medium_holders": 150,
"small_holders": 1000
},
"top_posts": [
{
"post_id": "p1",
"token_address": "0xdef456...",
"title": "NEUR Partnership with XYZ",
"link": "https://social.example.com/neur/post/1",
"published_at": "2025-03-10T14:22:00Z",
"impressions": 30000,
"engagement": 1200,
"smart_engagement": 100
}
],
"holders_distribution": {
"top_10_holders": 35.2,
"top_50_holders": 60.1
},
"whale_accumulation_trend": "increasing"
}
Assistant
Responses are generated using AI and may contain mistakes.