GET
/
pools
curl --request GET \
  --url https://api.dexpaprika.com/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
  }
}

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[]

An array of pool objects with their associated price data.

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

page_info
object

Details about the current page of results.