REST
Latest Trades
Recent buy/sell events with the same filters as the trades stream.
GET
/v1/tradesSee also: Stream equivalent
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
| Name | Type | Description |
|---|---|---|
| since | number | Return events with slot greater than this value. Use after a reconnect to backfill missed events. Example: 309812500 |
| mint | string | Filter to a single token mint address. Example: EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm |
| exchange | string | Filter by exchange. Currently supports pumpfun. Example: pumpfun |
| side | string | Filter by trade direction. Example: buy |
| minSol | number | Minimum trade size in SOL. Example: 0.5 |
| limit | number | Maximum number of results to return. Example: 20 |
| cursor | string | Pagination 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"
}