GET
/
analytics
/
tokens
/
leaderboard
curl --request GET \
  --url https://api.quantpilot.ai/analytics/tokens/leaderboard \
  --header 'x-api-key: <api-key>'
{
  "sortBy": "market_cap",
  "limit": 10,
  "tokens": [
    {
      "token_address": "0xabc123...",
      "symbol": "BANKR",
      "name": "Bankr",
      "price": 50.21,
      "market_cap": 20000000,
      "followers": 21000,
      "smart_followers": 180,
      "impressions": 64199,
      "smart_reach": 74726
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication

Query Parameters

sortBy
string
required

Metric to sort by (e.g. followers, smart_followers, impressions, smart_reach, post_engagement, smart_engagement, market_cap, holders_growth)

limit
integer
default:10

Number of items to return

Response

200 - application/json

Successful response

The response is of type object.