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