Filter and search liquidity pools by volume, transaction count, and creation date with sorting and pagination
How does this differ from the regular pools endpoint?
/networks/{network}/pools endpoint lists top pools with basic sorting. This endpoint adds range filters (min/max volume, transaction count thresholds, creation date windows) so you can build advanced screeners without client-side filtering.What sort fields are available?
volume_24h (default), volume_7d, volume_30d, liquidity, txns_24h, or created_at. Combine with sort_dir (asc or desc).How does pagination work?
limit (1-100, default 50) and increment page. The response includes page_info with total_items and total_pages so you know when to stop.Can I combine multiple filters?
volume_24h_min=100000&txns_24h_min=50&created_after=1709251200 returns only pools matching all three conditions.Zero-based page index for paginated results.
0 <= x <= 1000Number of items to return per page (max 100).
1 <= x <= 100Minimum 24-hour volume in USD.
Maximum 24-hour volume in USD.
Minimum 7-day volume in USD. Not supported currently.
Minimum 30-day volume in USD. Not supported currently.
Minimum pool liquidity in USD. Not supported currently.
Maximum pool liquidity in USD. Not supported currently.
Minimum number of transactions in the last 24 hours.
Filters for pools created after this UNIX timestamp.
Filters for pools created before this UNIX timestamp.
Field by which to sort the returned data.
volume_24h, volume_7d, volume_30d, liquidity, txns_24h, created_at Sort direction (ascending or descending).
asc, desc