REST
Token Trades
Trade history for a single mint, newest first. Retention-clamped. Optional source filter. Same SwapV1 shape as the trades stream.
GET
/v1/tokens/:mint/tradesSee also: Stream equivalent
Request
curl "https://api.anaxer.com/v1/tokens/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/trades?source=pump_fun&limit=50&from=1751000000000&to=1751008869000" \
-H "Authorization: Bearer YOUR_KEY"Path parameters
| Name | Type | Description |
|---|---|---|
| mint | string | Token mint address. Example: EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm |
Query parameters
Full venue catalog: Sources. REST list filters use the singular source query param (one venue). Streams use the sources array.
| Name | Type | Description |
|---|---|---|
| source | string | Filter by a single venue slug. Supported: pump_fun, pump_amm, raydium_launchlab, raydium_cpmm, raydium_clmm, raydium_v4, meteora_dbc, meteora_damm_v2, meteora_dlmm, meteora_pools, orca_whirlpool, pancakeswap, bonkfun. Unknown values return 400. Example: pump_fun |
| limit | number | Maximum number of results (default 50, max 200). Example: 50 |
| cursor | string | Opaque keyset cursor from the previous response's next field. Endpoint-scoped — do not reuse across endpoints. |
| from | string | Start of the time window (ISO-8601 or unix ms). Clamped to your plan's history retention. Example: 1751000000000 |
| to | string | End of the time window (ISO-8601 or unix ms). Example: 1751008869000 |
Response
Example response body:
{
"data": [
{
"type": "swap",
"signature": "5xY8kR3nQmZ2vLdE9fWqT1sN4pC7hUoB6yA8jK2mVxRt3wDzS9pQeH4LcM7nJb1FgKtR5zXvY2mNc8h",
"slot": 309812501,
"timestamp": 1751008869000,
"wallet": "5FHwkW5742VKq9W8pN3mL7jR2sT6cX4bY1zD8gH9K2pQnM",
"source": "pump_fun",
"volumeUsd": 187.5,
"swap": {
"from": {
"mint": "So11111111111111111111111111111111111111112",
"amount": "1250000000",
"uiAmount": 1.25,
"decimals": 9
},
"to": {
"mint": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
"amount": "842110000000",
"uiAmount": 842110,
"decimals": 6
}
}
}
],
"next": null,
"window": { "from": 1751000000000, "to": 1751008869000 }
}