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.com

Example request

curl "https://api.anaxer.com/v1/trades?exchange=pumpfun&limit=20" \
  -H "Authorization: Bearer YOUR_KEY"

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"
}