REST

Latest Trades

Recent buy/sell events with the same filters as the trades stream.

GET/v1/trades

Request

curl "https://api.anaxer.com/v1/trades?since=309812500&mint=EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm&exchange=pumpfun&side=buy&minSol=0.5&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
mintstringFilter to a single token mint address. Example: EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm
exchangestringFilter by exchange. Currently supports pumpfun. Example: pumpfun
sidestringFilter by trade direction. Example: buy
minSolnumberMinimum trade size in SOL. Example: 0.5
limitnumberMaximum number of results to return. Example: 20
cursorstringPagination cursor from a previous response.

Response

Example response body:

{
  "data": [
    {
      "type": "swap",
      "exchange": "pumpfun",
      "wallet": "5FHwkW5742VKq9W8pN3mL7jR2sT6cX4bY1zD8gH9K2pQnM",
      "trade_value": {
        "sol": "1.250",
        "usd": "187.50"
      },
      "swap": {
        "in": {
          "tokenAddress": "So11111111111111111111111111111111111111112",
          "symbol": "SOL",
          "tokenAmount": "1.250"
        },
        "out": {
          "tokenAddress": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
          "symbol": "WIF",
          "tokenAmount": "842110.0"
        }
      },
      "slot": 309812501,
      "timestamp": "2026-06-27T07:21:09Z"
    }
  ],
  "nextCursor": "MzA5ODEyNTAx"
}