Aqua0
API ReferencePools

Get a pool's recent JIT-backed swaps

Returns the pool's realized V4 swaps, newest first, with on-chain amounts and block time. Only settled swaps that took Aqua0 JIT liquidity are visible (labeled `source: jit-backed`), and LP lock or unlock events are not included.

GET
/api/vaults/pools/{chainId}/{poolId}/trades

Authorization

ApiKeyAuth
X-API-Key<token>

In: header

Path Parameters

chainId*string

Numeric ID of the chain to query or act on.

poolId*string

The pool's 32-byte identifier (Uniswap v4 PoolId).

Response Body

application/json

curl -X GET "https://example.com/api/vaults/pools/string/string/trades"
{  "chainId": 0,  "poolId": "string",  "source": "jit-backed",  "trades": [    {      "timestamp": 0,      "type": "swap-in",      "usd": 0,      "amount0": "string",      "amount1": "string",      "wallet": "string",      "walletKnown": true,      "txHash": "string"    }  ],  "nextCursor": 0}
Empty