DexPaprika API
Access DeFi data across 34+ blockchains, 30M+ liquidity pools, and 28M+ tokens via the DexPaprika MCP server.
Setup
Add the MCP server to your Claude Code config:
{
"mcpServers": {
"dexpaprika": {
"url": "https://mcp.dexpaprika.com/sse"
}
}
}
Or install the full plugin (includes agent + 4 skills):
/plugin marketplace add coinpaprika/claude-marketplace
/plugin install dexpaprika@coinpaprika-plugins
Available MCP Tools (14)
getCapabilities — Server capabilities, workflow examples, network synonyms
getNetworks — List 34+ supported blockchains
getStats — Platform-wide statistics
getNetworkDexes — DEXes on a network
getNetworkPools — Top pools (sortable by volume, price, txns)
getNetworkPoolsFilter — Filter pools by volume, txns, creation date
getDexPools — Pools for a specific DEX
getPoolDetails — Pool details (tokens, volume, liquidity)
getPoolOHLCV — Historical price candles (1m to 24h intervals)
getPoolTransactions — Recent swaps and trades
getTokenDetails — Token price, liquidity, metrics
getTokenPools — All pools containing a token
getTokenMultiPrices — Batch prices for up to 10 tokens
search — Search tokens, pools, DEXes across all networks
Common Network IDs
ethereum, solana, bsc, polygon, arbitrum, base, avalanche, optimism, sui, ton, tron
Rate Limits
1---2name: dexpaprika-api3description: Access DeFi data from DexPaprika: token prices, liquidity pools, OHLCV, transactions across 34+ blockchains and 30M+ pools. Free, no API key needed. Install MCP: add https://mcp.dexpaprika.com/sse as SSE server, or install plugin: /plugin marketplace add coinpaprika/claude-marketplace4---5
6# DexPaprika API
7
8Access DeFi data across 34+ blockchains, 30M+ liquidity pools, and 28M+ tokens via the DexPaprika MCP server.
9
10## Setup
11
12Add the MCP server to your Claude Code config:
13
14```json
15{
16 "mcpServers": {
17 "dexpaprika": {
18 "url": "https://mcp.dexpaprika.com/sse"
19 }
20 }
21}
22```
23
24Or install the full plugin (includes agent + 4 skills):
25```
26/plugin marketplace add coinpaprika/claude-marketplace
27/plugin install dexpaprika@coinpaprika-plugins
28```
29
30## Available MCP Tools (14)
31
32- `getCapabilities` — Server capabilities, workflow examples, network synonyms
33- `getNetworks` — List 34+ supported blockchains
34- `getStats` — Platform-wide statistics
35- `getNetworkDexes` — DEXes on a network
36- `getNetworkPools` — Top pools (sortable by volume, price, txns)
37- `getNetworkPoolsFilter` — Filter pools by volume, txns, creation date
38- `getDexPools` — Pools for a specific DEX
39- `getPoolDetails` — Pool details (tokens, volume, liquidity)
40- `getPoolOHLCV` — Historical price candles (1m to 24h intervals)
41- `getPoolTransactions` — Recent swaps and trades
42- `getTokenDetails` — Token price, liquidity, metrics
43- `getTokenPools` — All pools containing a token
44- `getTokenMultiPrices` — Batch prices for up to 10 tokens
45- `search` — Search tokens, pools, DEXes across all networks
46
47## Common Network IDs
48
49`ethereum`, `solana`, `bsc`, `polygon`, `arbitrum`, `base`, `avalanche`, `optimism`, `sui`, `ton`, `tron`
50
51## Rate Limits
52
53- Free: 10,000 requests/day, no API key needed
54- Docs: https://docs.dexpaprika.com
55- Streaming: https://streaming.dexpaprika.com (real-time SSE, ~1s updates)