---
title: PumpSwap API on Solana: pools, swaps, prices | DexPaprika
description: Pools, swaps, prices and OHLCV for PumpSwap, the Solana AMM that Pump.fun tokens move to, over REST. Free API key, no credit card.
url: https://dexpaprika.com/api/solana/pumpswap
type: api-dex
---

# PumpSwap API on Solana

> **Quick links**: [Pricing](https://dexpaprika.com/api/pricing) | [Developer console](https://console.dexpaprika.com) | [API documentation](https://docs.dexpaprika.com) | [Solana DEX Data API](https://dexpaprika.com/api/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.

## PumpSwap on Solana at a glance

- **20K+** active pools
- **$2.88B** volume, 24h
- **15,863,843** transactions, 24h

Data as of 2026-09-17 15:21 UTC, source: /networks/solana/dexes

## The PumpSwap AMM in the API

| Version | dex_id | factory_id | Volume, 24h |
|---|---|---|---|
| PumpSwap AMM | `pumpswap` | `pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA` | $2.88B |

## Your first PumpSwap call

```bash
# 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/7Rqk6n9PdZYCUpY97dEhbzdLys16GMH4sqBfEHAc8smN/transactions?limit=5"
```

Newest swap through the busiest PumpSwap pool at 2026-09-17 15:21 UTC, trimmed to ten fields:

```json
{
  "id": "2XbdF4dd36sSW7zBLYnCzsSKhnpjVtqcMNqncdNhzidiRMWajADTuHzdkHJdK4am6cgRGVZcYi5o5qjHXRE6UeKH",
  "pool_id": "7Rqk6n9PdZYCUpY97dEhbzdLys16GMH4sqBfEHAc8smN",
  "factory_id": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
  "token_0_symbol": "Anthropic",
  "token_1_symbol": "SOL",
  "volume_0": 0.013758,
  "volume_1": 3.17e-7,
  "price_0_usd": 0.00007582947410697573,
  "created_at_block_number": 447723714,
  "created_at": "2026-09-17T06:11:19Z"
}
```

## Endpoints that answer for PumpSwap

| Endpoint | Returns | Docs |
|---|---|---|
| `GET /networks/solana/pools/search?dex_name=pumpswap` | PumpSwap AMM pools, sorted and filtered by volume, liquidity, transactions or age. | [Reference](https://docs.dexpaprika.com/api-reference/pools/advanced-pool-filtering-on-a-specific-network) |
| `GET /networks/solana/pools/{address}` | Liquidity, reserves, pricing and metadata for one pool. | [Reference](https://docs.dexpaprika.com/api-reference/pools/get-a-pool-on-a-network) |
| `GET /networks/solana/pools/{address}/transactions` | Recent swaps, liquidity adds and removes for a pool, with token symbols and USD prices. | [Reference](https://docs.dexpaprika.com/api-reference/pools/get-transactions-of-a-pool-on-a-network-paging-can-be-used-up-to-100-pages) |
| `GET /networks/solana/pools/{address}/ohlcv` | Candles for a pool at intervals from 1 minute to 24 hours. | [Reference](https://docs.dexpaprika.com/api-reference/pools/get-ohlcv-data-for-a-pool-pair) |
| `GET /networks/solana/tokens/{address}` | Latest price, metadata and summary metrics for one token. | [Reference](https://docs.dexpaprika.com/api-reference/tokens/get-a-tokens-latest-data-on-a-network) |
| `GET /networks/solana/dexes` | Every DEX on Solana, pumpswap among them. | [Reference](https://docs.dexpaprika.com/api-reference/dexes/get-a-list-of-available-dexes-on-a-network) |
| `SSE /sse/transactions` | Swaps on a pool or token, pushed as they land. In preview. | [Reference](https://docs.dexpaprika.com/streaming/transactions-streaming) |

## What it costs

- **Free**: a free API key, no credit card. Data can run a short way behind the chain.
- **Paid plans**: real-time data, higher request ceilings and dedicated hosts.

Current quotas and rates: [API pricing](https://dexpaprika.com/api/pricing)

## Frequently asked 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 15:21 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 at docs.dexpaprika.com/streaming/showcase-streams, and a running price stream is on dexpaprika.com/streaming/solana.

### 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.

## Related

- [Raydium API on Solana](https://dexpaprika.com/api/solana/raydium)
- [Meteora API on Solana](https://dexpaprika.com/api/solana/meteora)
- [Orca DEX API on Solana](https://dexpaprika.com/api/solana/orca)
- [Pump.fun API on Solana](https://dexpaprika.com/api/solana/pumpfun)
- [Solana DEX Data API](https://dexpaprika.com/api/solana)
- [Live Solana streaming](https://dexpaprika.com/streaming/solana)
- [API documentation](https://docs.dexpaprika.com)
- [AI agents and skills](https://agents.dexpaprika.com)

---
*Data provided by DexPaprika | Page: PumpSwap API on Solana | Data as of 2026-09-17 15:21 UTC*
