PumpSwap API on Solana
PumpSwap is the AMM from the Pump.fun team, where tokens land once they complete the bonding curve. The API indexes it as pumpswap. Pools, prices, OHLCV candles and individual swaps come back over REST, with streaming in preview.
Data as of 2026-09-17 14:31 UTC, source: /networks/solana/dexes
Your first PumpSwap call
Find the busiest pools for one version, then read the swaps going through one of them. Token symbols come back in every transaction row, so there is no second lookup.
# top PumpSwap AMM pools by 24h volume
curl "https://api.dexpaprika.com/networks/solana/pools/search?dex_name=pumpswap&order_by=volume_usd_24h&sort=desc&limit=5"
# newest transactions through one pool
curl "https://api.dexpaprika.com/networks/solana/pools/{pool_address}/transactions?limit=5"The PumpSwap AMM in the API
Pool records carry dex_id. Swap rows carry factory_id, the program the swap went through.
| Version | dex_id | factory_id | Volume, 24h |
|---|---|---|---|
| PumpSwap AMM | pumpswap | pAMMBay6…FMfXEA | $2.88B |
Data as of 2026-09-17 14:31 UTC, source: /networks/solana/dexes
Endpoints that answer for PumpSwap
The same paths work on every chain we index. Full reference in the docs.
| Endpoint | Returns | Docs |
|---|---|---|
| GET /networks/solana/pools/search?dex_name=pumpswap | PumpSwap AMM pools, sorted and filtered by volume, liquidity, transactions or age. | reference |
| GET /networks/solana/pools/{address} | Liquidity, reserves, pricing and metadata for one pool. | reference |
| GET /networks/solana/pools/{address}/transactions | Recent swaps, liquidity adds and removes for a pool, with token symbols and USD prices. | reference |
| GET /networks/solana/pools/{address}/ohlcv | Candles for a pool at intervals from 1 minute to 24 hours. | reference |
| GET /networks/solana/tokens/{address} | Latest price, metadata and summary metrics for one token. | reference |
| GET /networks/solana/dexes | Every DEX on Solana, pumpswap among them. | reference |
| SSE /sse/transactions | Swaps on a pool or token, pushed as they land. In preview. | reference |
Streaming PumpSwap swaps
Streaming over server-sent events is in preview. /sse/transactions pushes swaps on a pool or token as they land, and each update counts as one request. See the showcase streams for access, or watch a running price stream on the Solana streaming page.
What it costs
One call is one credit on your plan. Current quotas and rates are on the pricing page.
- A free API key, no credit card
- Every endpoint on this page
- Data can run a short way behind the chain
- Real-time data on every endpoint
- Higher request ceilings
- Its own hosts: api-pro and streaming-pro
PumpSwap API questions
Do I need an API key to query PumpSwap data?
A free API key is the place to start. It needs no credit card and works on every endpoint on this page: register one at console.dexpaprika.com. Current quotas are on the pricing page.
How do I tell PumpSwap swaps from other Solana DEXes?
Pool records carry dex_id: pumpswap, and every swap row through them carries factory_id: pAMMBa…fXEA.
How do I list only PumpSwap pools on Solana?
Call /networks/solana/pools/search with dex_name=pumpswap. Add order_by=volume_usd_24h to get the busiest first.
How fresh is the PumpSwap data?
On the free plan, data can run a short way behind the chain. Paid plans serve it in real time. The figures on this page were read from the API at 2026-09-17 14:31 UTC.
What counts as one request?
One call is one credit, including a call that returns many rows. Batch endpoints bill per item. Each streaming update also counts as one.
Can I stream PumpSwap swaps instead of polling?
Streaming over server-sent events is in preview. /sse/transactions pushes swaps on a pool or token as they land. Access is described in the showcase streams docs, and a running price stream is on the Solana streaming page.
How do I send my key once I have one?
Put the key in the Authorization header on its own, with nothing in front of it.
Which host do I call?
api.dexpaprika.com with a free key. Pro and Enterprise keys go to api-pro.dexpaprika.com.
Start querying PumpSwap on Solana
Every call on this page is one paste away. Plans decide how many you can make and how fresh the data is.