GET
/
tokens
/
{token_address}
/
followers
curl --request GET \
  --url https://api.quantpilot.ai/tokens/{token_address}/followers \
  --header 'x-api-key: <api-key>'
{
  "token_address": "0xabc123...",
  "type": "smart",
  "page": 1,
  "limit": 50,
  "total": 180,
  "followers": [
    {
      "follower_id": "f1",
      "handle": "@WhaleMaster",
      "wallet_address": "0x999aaa...",
      "follower_type": "whale",
      "estimated_portfolio": 2500000
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication

Path Parameters

token_address
string
required

Unique token address

Query Parameters

type
enum<string>
default:all

Type of followers: all or smart

Available options:
all,
smart
page
integer
default:1

Page number

limit
integer
default:50

Number of items per page

Response

200 - application/json

Successful response

The response is of type object.