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
}
}THIS ENDPOINT HAS BEEN DEPRECATED AND WILL BE REMOVED. It now returns a 410 Gone status. Please refer to our API documentation for alternatives.
Original Description (for historical reference): Retrieves a paginated list of top pools from all (or specific) networks. Allows sorting and ordering, providing aggregated volume, price data, and token details for each pool.
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
}
}What does this endpoint return?
volume_usd.How do I change sorting?
order_by (e.g., volume_usd, price_usd) and sort (asc or desc).How do I filter to a single network?
410 Gone error.Please use /networks/{network}/pools instead to get top pools for each specific blockchain network.curl -X GET "https://api.dexpaprika.com/pools"
# Get top pools on Ethereum
curl -X GET "https://api.dexpaprika.com/networks/ethereum/pools"
# Get top pools on Solana
curl -X GET "https://api.dexpaprika.com/networks/solana/pools"
# Get top pools on Fantom
curl -X GET "https://api.dexpaprika.com/networks/fantom/pools"
Zero-based page index for paginated results.
0 <= x <= 1000Number of items to return per page (max 100).
1 <= x <= 100Sort order for the requested data (ascending or descending).
asc, desc Field by which to order the returned data.
volume_usd, price_usd, transactions, last_price_change_usd_24h, created_at successful operation
An array of pool objects with their associated price data.
Show child attributes
Unique identifier or address of the pool.
Identifier of the DEX where this pool resides.
Human-readable DEX name (e.g., "Uniswap V3").
The blockchain network this pool resides on (e.g., "ethereum", "solana").
Block number at which this pool was created.
Timestamp (ISO-8601) indicating when the pool was created or recorded.
The total USD volume in this pool over a certain period (context-specific).
The total number of transactions involving this pool.
Current price in USD (often representing a ratio of two tokens in the pool).
USD price change over the last 5 minutes as a percentage.
USD price change over the last 1 hour as a percentage.
USD price change over the last 24 hours as a percentage.
Trading fee (e.g., 0.3 for 0.3%) associated with this pool. Null indicates fee information is not collected.
The tokens participating in this liquidity pool.
Show child attributes
Internal or canonical ID for the token (e.g., "usdc-usd-coin").
Human-readable name of the token (e.g., "USD Coin").
Ticker symbol of the token (e.g., "USDC").
Blockchain network where the token exists (e.g., "ethereum", "solana").
Decimal precision of the token (e.g., 6 for USDC).
Total supply of the token.
A detailed overview of the token's purpose, use cases, or background.
Official website URL for the token/project.
Link to a block explorer or analytics page for this token.
When the token was added to the system.
Fully diluted valuation of the token. Fully diluted valuation of token.
When the token data was last updated.
A comprehensive summary of token-related metrics, including price, liquidity, and transaction volumes across various time intervals.
Show child attributes
Current price of the token in USD.
Fully diluted valuation of token.
Total liquidity (in USD) across all pools for this token.
Total number of pools that include the given token.
Transaction and volume metrics for a specific time interval (e.g., 24h, 1h, 15m).
Show child attributes
Total trading volume in the token's native currency for the interval.
Total trading volume in USD for the interval.
Total USD value of buy transactions during the interval.
Total USD value of sell transactions during the interval.
Number of sell transactions during the interval.
Number of buy transactions during the interval.
Total number of transactions during the interval.
The percentage change between the current price and the price from the given interval.
Transaction and volume metrics for a specific time interval (e.g., 24h, 1h, 15m).
Show child attributes
Total trading volume in the token's native currency for the interval.
Total trading volume in USD for the interval.
Total USD value of buy transactions during the interval.
Total USD value of sell transactions during the interval.
Number of sell transactions during the interval.
Number of buy transactions during the interval.
Total number of transactions during the interval.
The percentage change between the current price and the price from the given interval.
Transaction and volume metrics for a specific time interval (e.g., 24h, 1h, 15m).
Show child attributes
Total trading volume in the token's native currency for the interval.
Total trading volume in USD for the interval.
Total USD value of buy transactions during the interval.
Total USD value of sell transactions during the interval.
Number of sell transactions during the interval.
Number of buy transactions during the interval.
Total number of transactions during the interval.
The percentage change between the current price and the price from the given interval.
Transaction and volume metrics for a specific time interval (e.g., 24h, 1h, 15m).
Show child attributes
Total trading volume in the token's native currency for the interval.
Total trading volume in USD for the interval.
Total USD value of buy transactions during the interval.
Total USD value of sell transactions during the interval.
Number of sell transactions during the interval.
Number of buy transactions during the interval.
Total number of transactions during the interval.
The percentage change between the current price and the price from the given interval.
Transaction and volume metrics for a specific time interval (e.g., 24h, 1h, 15m).
Show child attributes
Total trading volume in the token's native currency for the interval.
Total trading volume in USD for the interval.
Total USD value of buy transactions during the interval.
Total USD value of sell transactions during the interval.
Number of sell transactions during the interval.
Number of buy transactions during the interval.
Total number of transactions during the interval.
The percentage change between the current price and the price from the given interval.
Transaction and volume metrics for a specific time interval (e.g., 24h, 1h, 15m).
Show child attributes
Total trading volume in the token's native currency for the interval.
Total trading volume in USD for the interval.
Total USD value of buy transactions during the interval.
Total USD value of sell transactions during the interval.
Number of sell transactions during the interval.
Number of buy transactions during the interval.
Total number of transactions during the interval.
The percentage change between the current price and the price from the given interval.
Transaction and volume metrics for a specific time interval (e.g., 24h, 1h, 15m).
Show child attributes
Total trading volume in the token's native currency for the interval.
Total trading volume in USD for the interval.
Total USD value of buy transactions during the interval.
Total USD value of sell transactions during the interval.
Number of sell transactions during the interval.
Number of buy transactions during the interval.
Total number of transactions during the interval.
The percentage change between the current price and the price from the given interval.
{
"price_usd": 125.67,
"fdv": 12567,
"liquidity_usd": 5000000,
"pools": 5,
"24h": {
"volume": 100000,
"volume_usd": 102000,
"buy_usd": 50000,
"sell_usd": 52000,
"sells": 150,
"buys": 180,
"txns": 330,
"last_price_usd_change": 50
},
"6h": {
"volume": 25000,
"volume_usd": 25500,
"sells": 45,
"buys": 50,
"buy_usd": 12500,
"sell_usd": 13000,
"txns": 95,
"last_price_usd_change": 10
},
"1h": {
"volume": 5000,
"volume_usd": 5100,
"buy_usd": 2500,
"sell_usd": 2600,
"sells": 10,
"buys": 15,
"txns": 25,
"last_price_usd_change": 2
},
"30m": {
"volume": 2500,
"volume_usd": 2550,
"buy_usd": 1250,
"sell_usd": 1300,
"sells": 5,
"buys": 8,
"txns": 13,
"last_price_usd_change": 1
},
"15m": {
"volume": 1250,
"volume_usd": 1275,
"buy_usd": 675,
"sell_usd": 700,
"sells": 2,
"buys": 4,
"txns": 6,
"last_price_usd_change": 0.5
},
"5m": {
"volume": 500,
"volume_usd": 510,
"buy_usd": 250,
"sell_usd": 260,
"sells": 1,
"buys": 1,
"txns": 2,
"last_price_usd_change": -0.5
},
"1m": {
"volume": 100,
"volume_usd": 102,
"buy_usd": 50,
"sell_usd": 52,
"sells": 1,
"buys": 0,
"txns": 1,
"last_price_usd_change": 0
}
}Details about the current page of results.
Was this page helpful?