Skip to main content

Uniswap on Arbitrum: DEX data API

Uniswap v2, v3 and v4 all run on Arbitrum, each from its own factory address, and the API lists each version as its own DEX. Pools, prices, OHLCV candles and individual swaps come back over REST, with streaming in preview.

The main Uniswap page: Uniswap API on Ethereum.

1K+active Uniswap pools
$235.6Mvolume, 24h
366,648transactions, 24h
3versions in the API

Data as of 2026-09-17 14:31 UTC, source: /networks/arbitrum/dexes

Your first Uniswap 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 Uniswap v3 pools by 24h volume
curl "https://api.dexpaprika.com/networks/arbitrum/pools/search?dex_name=uniswap_v3&order_by=volume_usd_24h&sort=desc&limit=5"

# newest transactions through one pool
curl "https://api.dexpaprika.com/networks/arbitrum/pools/{pool_address}/transactions?limit=5"

Uniswap v2, v3 and v4 on Arbitrum

Pool records carry dex_id. Swap rows carry factory_id, the contract the swap went through.

Versiondex_idfactory_idVolume, 24h Share
Uniswap v3uniswap_v30x1f9843…31f984$201.4M85.5%
Uniswap v4uniswap_v40x360e68…b9fb32PoolManager contract$34.0M14.4%
Uniswap v2uniswap_v20xf1d7cc…0fbcf9$227,751.030.1%

Data as of 2026-09-17 14:31 UTC, source: /networks/arbitrum/dexes

Top Uniswap pools on Arbitrum by 24h volume

PairVersionVolume, 24hLiquidity
WETH/USDCUniswap v3$101.2M$36.0M
WBTC/WETHUniswap v3$32.6M$35.9M
WBTC/USDCUniswap v3$16.6M$8.1M
WETH/ARBUniswap v3$11.9M$1.4M
WETH/USD₮0Uniswap v3$8.7M$6.4M
USDai/USDCUniswap v4$3.0M$300,198.08
WBTC/cbBTCUniswap v4$2.8M$662,603.60
WETH/RHUBUniswap v2$163,916.52$15,060.58
USDC/DUCTUniswap v2$5,979.21$202,067.44
LION/WETHUniswap v2$5,054.59$509,350.26

Endpoints that answer for Uniswap

The same paths work on every chain we index. Full reference in the docs.

EndpointReturnsDocs
GET /networks/arbitrum/pools/search?dex_name=uniswap_v3Uniswap v3 pools, sorted and filtered by volume, liquidity, transactions or age. Swap in uniswap_v4 and uniswap_v2 for the other versions.reference
GET /networks/arbitrum/pools/{address}Liquidity, reserves, pricing and metadata for one pool.reference
GET /networks/arbitrum/pools/{address}/transactionsRecent swaps, liquidity adds and removes for a pool, with token symbols and USD prices.reference
GET /networks/arbitrum/pools/{address}/ohlcvCandles for a pool at intervals from 1 minute to 24 hours.reference
GET /networks/arbitrum/tokens/{address}Latest price, metadata and summary metrics for one token.reference
GET /networks/arbitrum/dexesEvery DEX on Arbitrum, with each Uniswap version as its own entry.reference
SSE /sse/transactionsSwaps on a pool or token, pushed as they land. In preview.reference

Streaming Uniswap 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 Arbitrum streaming page.

What it costs

One call is one credit on your plan. Current quotas and rates are on the pricing page.

Free
$0 / month
  • A free API key, no credit card
  • Every endpoint on this page
  • Data can run a short way behind the chain
Get your free API key
Pro
$99 / month
  • Real-time data on every endpoint
  • Higher request ceilings
  • Its own hosts: api-pro and streaming-pro
See the plans

Uniswap API questions

Do I need an API key to query Uniswap 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.

Which Uniswap version is a swap from?

Read factory_id on the transaction row: 0x1f98…f984 is Uniswap v3, 0x360e…fb32 is Uniswap v4 and 0xf1d7…bcf9 is Uniswap v2. Pool records carry dex_id directly: uniswap_v3 is Uniswap v3, uniswap_v4 is Uniswap v4 and uniswap_v2 is Uniswap v2.

How do I list only Uniswap pools on Arbitrum?

Call /networks/arbitrum/pools/search with dex_name=uniswap_v3, then with dex_name=uniswap_v4 and dex_name=uniswap_v2 for the other versions. Add order_by=volume_usd_24h to get the busiest first.

How fresh is the Uniswap 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 Uniswap 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 Arbitrum 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 Uniswap on Arbitrum

Every call on this page is one paste away. Plans decide how many you can make and how fresh the data is.