REST

Latest Graduations

Tokens that recently graduated to a live pool.

GET/v1/graduations

Request

curl "https://api.anaxer.com/v1/graduations?since=309812500&limit=20" \
  -H "Authorization: Bearer YOUR_KEY"

Path parameters

No path parameters for this endpoint.

Query parameters

NameTypeDescription
sincenumberReturn events with slot greater than this value. Use after a reconnect to backfill missed events. Example: 309812500
limitnumberMaximum number of results to return. Example: 20
cursorstringPagination cursor from a previous response.

Response

Example response body:

{
  "data": [
    {
      "type": "graduated",
      "platform": "pumpfun",
      "mint": "2ajrYELtYtvtJd8fQAGXpfQbgXXZe3YjPtNJ9K3bpump",
      "symbol": "PEPE",
      "tokenSupply": "1000000000",
      "pool": "PumpSwap",
      "liquiditySol": "412.880",
      "slot": 309845102,
      "timestamp": "2026-06-27T07:48:11Z"
    }
  ],
  "nextCursor": "MzA5ODQ1MTAy"
}