Skip to main content
GET
/
coins
/
graduated
Get Graduated Coins
curl --request GET \
  --url https://advanced-api-v2.pump.fun/coins/graduated
{
  "data": [
    {
      "mint": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "graduatedTimestamp": 123,
      "marketCap": 123,
      "raydiumPool": "<string>"
    }
  ]
}

Overview

The Graduated Coins endpoint returns a list of coins that have successfully completed their bonding curve and graduated to Raydium. These coins have reached sufficient liquidity and trading activity to move to decentralized exchange trading.

Authentication

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

Endpoint

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

Parameters

This endpoint does not require any parameters.

Response

data
array
Array of graduated coin objects

Example Request

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

Use Cases

  • Track successful coin launches that reached Raydium
  • Analyze graduation patterns and timelines
  • Monitor coins that have achieved significant milestones
  • Build dashboards for graduated coin performance

Notes

  • Replace <your_token> with your actual JWT token
  • Graduated coins represent successful projects that completed their bonding curve
  • This endpoint is useful for identifying coins with proven traction

Build docs developers (and LLMs) love