REST API
Prefer request/response? Every stream has a REST equivalent for recent events, plus metadata and price lookups. All endpoints return structured JSON.
Base URL
https://api.anaxer.comExample request
curl "https://api.anaxer.com/v1/trades?exchange=pumpfun&limit=20" \
-H "Authorization: Bearer YOUR_KEY"Endpoints
GET
/v1/tokens/:mintToken Metadata
Name, symbol, creator, supply, and social links for any mint.
GET
/v1/creationsLatest Token Creations
The most recent token launches across the ecosystem.
GET
/v1/graduationsLatest Graduations
Tokens that recently graduated to a live pool.
GET
/v1/tradesLatest Trades
Recent buy/sell events with the same filters as the trades stream.
GET
/v1/tokens/:mint/priceToken Price
Current USD and SOL price for any mint.
Pagination
List endpoints return a data array and an optional nextCursor. Pass cursor on the next request to fetch the next page. Use since with a slot number to backfill events after a stream reconnect.
{
"data": [
{
"type": "swap",
"exchange": "pumpfun",
"wallet": "...",
"trade_value": { "sol": "1.250", "usd": "187.50" },
"slot": 309812501,
"timestamp": "2026-06-27T07:21:09Z"
}
],
"nextCursor": "MzA5ODEyNTAx"
}