Skip to main content
GET
/
networks
/
{network}
/
pools
Get top X pools on a network.
curl --request GET \
  --url https://api.dexpaprika.com/networks/{network}/pools
{
  "pools": [
    {
      "id": "8sLbNZoA1cfnvMJLPfp98ZLAnFSYCFApfJKMbiXNLwxj",
      "dex_id": "CAMMCzo5YL8w4VFF8KVHrK22GGUsp5VTaW7grrKgrWqK",
      "dex_name": "Raydium CLMM",
      "chain": "solana",
      "volume_usd": 829807420.5052161,
      "created_at": "2023-11-26T20:25:08.000Z",
      "created_at_block_number": 232424998,
      "transactions": 273978,
      "price_usd": 228.70162563938777,
      "last_price_change_usd_5m": 0.05658913344914529,
      "last_price_change_usd_1h": -2.2971851257064313,
      "last_price_change_usd_24h": -10.883264918629346,
      "fee": 0,
      "tokens": [
        {
          "id": "So11111111111111111111111111111111111111112",
          "name": "Wrapped SOL",
          "symbol": "SOL",
          "chain": "solana",
          "decimals": 9,
          "added_at": "2024-10-04T08:30:05.000Z"
        },
        {
          "id": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
          "name": "USD Coin",
          "symbol": "USDC",
          "chain": "solana",
          "decimals": 6,
          "added_at": "2024-10-04T08:30:05.000Z"
        }
      ]
    }
  ],
  "page_info": {
    "limit": 100,
    "page": 1,
    "total_items": 121650,
    "total_pages": 1217
  }
}

Endpoint overview

List top liquidity pools on a specific network with sorting and paging.

FAQs

Provide the network id (e.g., ethereum, solana) path parameter.
Common values are volume_usd, price_usd, and liquidity_usd depending on the dataset.
Start with page=0, set limit (up to 100), and increment page while results are returned.

Path Parameters

network
string
required

Network slug or ID (e.g., 'solana'). You can find the list of supported networks with their IDs here: /networks.

Query Parameters

page
integer

Zero-based page index for paginated results.

Required range: 0 <= x <= 1000
limit
integer
default:10

Number of items to return per page (max 100).

Required range: 1 <= x <= 100
sort
enum<string>

Sort order for the requested data (ascending or descending).

Available options:
asc,
desc
order_by
enum<string>

Field by which to order the returned data.

Available options:
volume_usd,
price_usd,
transactions,
last_price_change_usd_24h,
created_at

Response

successful operation

pools
object[]

A list of pools for the given network, including pricing data.

page_info
object

Details about the current page of results.