Skip to main content
GET
/
coins
/
kolscan
KOL Scan
curl --request GET \
  --url https://advanced-api-v2.pump.fun/coins/kolscan
{
  "data": [
    {
      "mint": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "kolActivity": {
        "mentions": 123,
        "trades": 123,
        "sentiment": "<string>"
      },
      "trendingScore": 123
    }
  ]
}

Overview

The KOL Scan endpoint provides data on coins that are being watched, discussed, or traded by key opinion leaders (KOLs) in the crypto space. This endpoint helps identify trending coins with influential backing.

Authentication

This endpoint requires JWT authentication via the Authorization header:
Authorization: Bearer <your_token>

Endpoint

GET https://advanced-api-v2.pump.fun/coins/kolscan

Parameters

This endpoint does not require any parameters.

Response

data
array
Array of coins tracked by KOLs

Example Request

curl -X GET "https://advanced-api-v2.pump.fun/coins/kolscan" \
  -H "Authorization: Bearer <your_token>" \
  -H "Accept: application/json"

Use Cases

  • Identify coins gaining attention from influential traders
  • Track KOL sentiment and activity
  • Discover early trending opportunities
  • Build social trading strategies based on KOL activity

Notes

  • Replace <your_token> with your actual JWT token
  • KOL tracking helps identify coins with social momentum
  • This data can be valuable for trend analysis and social sentiment

Build docs developers (and LLMs) love