GET
/
networks
/
{network}
/
dexes
/
{dex}
/
pools
curl --request GET \
  --url https://api.dexpaprika.com/networks/{network}/dexes/{dex}/pools
{
  "pools": [
    {
      "id": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640",
      "dex_id": "0x1f98431c8ad98523631ae4a59f267346ea31f984",
      "dex_name": "Uniswap V3",
      "chain": "ethereum",
      "volume_usd": 584196007.0865604,
      "created_at": "2021-05-05T21:42:11.000Z",
      "created_at_block_number": 12376729,
      "transactions": 8808,
      "price_usd": 1.000038420407992,
      "last_price_change_usd_5m": 0.2817344833094529,
      "last_price_change_usd_1h": -0.11886943575265935,
      "last_price_change_usd_24h": 0.06894442872697064,
      "fee": 0,
      "tokens": [
        {
          "id": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
          "name": "USD Coin",
          "symbol": "USDC",
          "chain": "ethereum",
          "decimals": 6,
          "added_at": "2024-12-02T13:00:16.000Z"
        },
        {
          "id": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
          "name": "Wrapped Ether",
          "symbol": "WETH",
          "chain": "ethereum",
          "decimals": 18,
          "added_at": "2024-12-02T13:00:16.000Z"
        }
      ]
    }
  ],
  "page_info": {
    "limit": 10,
    "page": 1,
    "total_items": 880,
    "total_pages": 88
  }
}

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.

dex
string
required

DEX identifier or name (e.g., 'uniswap_v2'). You can find the list of supported DEXes with their IDs here: /networks/{network}/dexes.

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 500).

Required range: 1 <= x <= 500
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

200
application/json
successful operation
pools
object[]

List of pools for the specified DEX, including volume and price data.

Information about a specific liquidity pool, including price and volume data.

page_info
object

Details about the current page of results.