GET
/
tokens
/
{token_address}
curl --request GET \
  --url https://api.quantpilot.ai/tokens/{token_address}
{
  "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"
}

Path Parameters

token_address
string
required

Unique token address

Response

200 - application/json
Successful response
token_address
string
Example:

"0xabc123..."

symbol
string
Example:

"BANKR"

name
string
Example:

"Bankr"

price
number
Example:

50.21

market_cap
number
Example:

20000000

followers
integer
Example:

21000

smart_followers
integer
Example:

180

impressions
integer
Example:

64199

smart_reach
integer
Example:

74726

post_engagement
integer
Example:

2200

smart_engagement
integer
Example:

150

top_kols
object[]
smart_follower_distribution
object
top_posts
object[]
holders_distribution
object
whale_accumulation_trend
string
Example:

"increasing"