Get Top Pools by Network
Retrieves top DEX pools for a specific network (eth, bsc, solana, etc.), ranked by 24h volume by default. Returns pricing, volumes, transaction counts, and liquidity; supports pagination and sorting options. Ideal for: network-wide pool discovery, finding high-activity pools, monitoring DEX liquidity on a chain.
Catalog action Blockchain Data
Retrieves top DEX pools for a specific network (eth, bsc, solana, etc.), ranked by 24h volume by default. Returns pricing, volumes, transaction counts, and liquidity; supports pagination and sorting options. Ideal for: network-wide pool discovery, finding high-activity pools, monitoring DEX liquidity on a chain.
At a Glance
| Field | Value |
|---|---|
| Action ID | coingecko-get-top-pools-network |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coingecko, onchain, pool, dex, top, network, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
network | string | Yes | Network ID (e.g., 'eth', 'bsc', 'polygon_pos'). |
include | string | No | Attributes to include: base_token, quote_token, dex (comma-separated). |
page | number | No | Page number for pagination (default: 1). |
sort | string | No | Sort order: h24_tx_count_desc, h24_volume_usd_desc (default: h24_tx_count_desc). |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
pools | array | Yes | List of top pools on the specified network |
Examples
json{ "type": "coingecko-get-top-pools-network", "payload": { "network": "example-network" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coingecko-get-top-pools-network/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "network": "example-network" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
