Skip to main content
GET
/
coins
/
list
List Coins
curl --request GET \
  --url https://advanced-api-v2.pump.fun/coins/list
{
  "data": [
    {
      "mint": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "description": "<string>",
      "image_uri": "<string>",
      "creator": "<string>",
      "created_timestamp": 123,
      "complete": true,
      "market_cap": 123,
      "usd_market_cap": 123,
      "nsfw": true
    }
  ]
}

Endpoint

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

Authentication

This endpoint requires JWT authentication. Include your token in the Authorization header.
Authorization: Bearer <your_token>

Query Parameters

This endpoint does not accept query parameters. It returns a list of coins based on default criteria.
For more advanced filtering, sorting, and search capabilities, use the Search Coins endpoint.

Response

data
array
Array of coin objects

Code Examples

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

Response Example

[
  {
    "mint": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
    "name": "Example Coin",
    "symbol": "EXAMPLE",
    "description": "An example coin on Pump.fun",
    "image_uri": "https://cf-ipfs.com/ipfs/...",
    "creator": "CkqW...",
    "created_timestamp": 1704067200000,
    "complete": false,
    "market_cap": 25.5,
    "usd_market_cap": 2856.75,
    "nsfw": false
  },
  {
    "mint": "8kJ9Lm3Nh4Pg5Qr6St7Uv8Wx9Yz0Ab1Cd2Ef3Gh4Ij5Kl",
    "name": "Another Coin",
    "symbol": "ANOTHER",
    "description": "Another example coin",
    "image_uri": "https://cf-ipfs.com/ipfs/...",
    "creator": "DpqX...",
    "created_timestamp": 1704153600000,
    "complete": true,
    "market_cap": 150.25,
    "usd_market_cap": 16828.05,
    "nsfw": false
  }
]

Additional List Endpoints

Pump.fun provides several specialized list endpoints for different use cases:

Frontend API v3 Endpoints

Featured Coins

GET /coins/featured/{timeWindow} - Get featured coins for a specific time window

Currently Live

GET /coins/currently-live - Get coins that are currently live

For You

GET /coins/for-you - Get personalized coin recommendations

King of the Hill

GET /coins/king-of-the-hill - Get the current King of the Hill coin

Advanced API v2 Endpoints

Featured (Advanced)

GET /coins/featured - Get featured coins with advanced filtering

Graduated

GET /coins/graduated - Get coins that have graduated to Raydium

KOL Scan

GET /coins/kolscan - Get coins detected by KOL scanning

Notes

  • This endpoint is part of the Advanced API v2 and provides basic coin listing functionality
  • For more control over results, use the Search endpoint which supports pagination, filtering, and sorting
  • Replace <your_token> with your actual JWT token

Build docs developers (and LLMs) love