---
title: Uniswap on Polygon: pools and swaps API | DexPaprika
description: Uniswap v2, v3 and v4 on Polygon: pools, swaps, prices and OHLCV over REST, with one dex_id per version. Free API key, no credit card.
url: https://dexpaprika.com/api/polygon/uniswap
type: api-dex
---

# Uniswap on Polygon: DEX data API

> **Quick links**: [Pricing](https://dexpaprika.com/api/pricing) | [Developer console](https://console.dexpaprika.com) | [API documentation](https://docs.dexpaprika.com) | [Polygon DEX Data API](https://dexpaprika.com/api/polygon)

Uniswap v2, v3 and v4 all run on Polygon, each from its own factory address, and the API lists each version as its own DEX.

## Uniswap on Polygon at a glance

- **1.3K+** active pools
- **$99.9M** volume, 24h
- **199,840** transactions, 24h

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

## Uniswap v2, v3 and v4 on Polygon

| Version | dex_id | factory_id | Volume, 24h |
|---|---|---|---|
| Uniswap v4 | `uniswap_v4` | `0x67366782805870060151383f4bbff9dab53e5cd6` (PoolManager contract) | $62.6M |
| Uniswap v3 | `uniswap_v3` | `0x1f98431c8ad98523631ae4a59f267346ea31f984` | $36.0M |
| Uniswap v2 | `uniswap_v2` | `0x9e5a52f57b3038f1b8eee45f28b3c1967e22799c` | $1.3M |

## Top Uniswap pools on Polygon by 24h volume

| Pair | Version | Volume, 24h | Liquidity | Pool |
|---|---|---|---|---|
| USDC/USDC | Uniswap v4 | $24.0M | $1.2M | [`0xe3f9…52a4`](https://dexpaprika.com/polygon/pool/0xe3f907c3512aea11d4cf0c2990970016b5ee5b1f83368c388287001f419052a4) |
| USDC/USDT0 | Uniswap v4 | $20.8M | $613,472.16 | [`0xa37d…a399`](https://dexpaprika.com/polygon/pool/0xa37d3e6da98dfeb7dc8103a6614f586916a6e04d41ea0a929bc19a029de1a399) |
| WPOL/USDT0 | Uniswap v3 | $9.3M | $1.3M | [`0x9b08…d8b7`](https://dexpaprika.com/polygon/pool/0x9b08288c3be4f62bbf8d1c20ac9c5e6f9467d8b7) |
| USDC/USDT0 | Uniswap v3 | $6.3M | $1.1M | [`0x3108…81b7`](https://dexpaprika.com/polygon/pool/0x31083a78e11b18e450fd139f9abea98cd53181b7) |
| DAI/USDT0 | Uniswap v4 | $6.1M | $807,889.97 | [`0xe188…49ff`](https://dexpaprika.com/polygon/pool/0xe1882ad75ae55f11733eb6a8b969fceabf23def0dd9fc8242395ef03f3fd49ff) |
| WETH/USDT0 | Uniswap v3 | $5.0M | $602,570.65 | [`0xbb98…9be4`](https://dexpaprika.com/polygon/pool/0xbb98b3d2b18aef63a3178023a920971cf5f29be4) |
| USDC/USDT0 | Uniswap v3 | $3.7M | $1.2M | [`0xdac8…255d`](https://dexpaprika.com/polygon/pool/0xdac8a8e6dbf8c690ec6815e0ff03491b2770255d) |
| USDC/DAI | Uniswap v4 | $3.3M | $541,708.56 | [`0x6da7…1829`](https://dexpaprika.com/polygon/pool/0x6da799cefb9ea6ceb8e45b37585c4cd7844b3aec34aa999c266beff925af1829) |
| DAI/sLGNS | Uniswap v4 | $1.9M | $82,333.74 | [`0xf4b6…1485`](https://dexpaprika.com/polygon/pool/0xf4b6f53cae52476476aba67a5680c1ec0091df76fec25b8a9643de828eae1485) |
| WBTC/USDC | Uniswap v3 | $1.5M | $652,081.86 | [`0xeef1…03c8`](https://dexpaprika.com/polygon/pool/0xeef1a9507b3d505f0062f2be9453981255b503c8) |

## Your first Uniswap call

```bash
# top Uniswap v4 pools by 24h volume
curl "https://api.dexpaprika.com/networks/polygon/pools/search?dex_name=uniswap_v4&order_by=volume_usd_24h&sort=desc&limit=5"

# newest transactions through one pool
curl "https://api.dexpaprika.com/networks/polygon/pools/0xe3f907c3512aea11d4cf0c2990970016b5ee5b1f83368c388287001f419052a4/transactions?limit=5"
```

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

```json
{
  "id": "0x9a2a95bff6e91162619db9170a42f12fe39a9d896d6b029f9d39106f00800cfc",
  "pool_id": "0xe3f907c3512aea11d4cf0c2990970016b5ee5b1f83368c388287001f419052a4",
  "factory_id": "0x67366782805870060151383f4bbff9dab53e5cd6",
  "token_0_symbol": "USDC",
  "token_1_symbol": "USDC",
  "volume_0": 288.807675,
  "volume_1": 288.795225,
  "price_0_usd": 1.00071565387859,
  "created_at_block_number": 93968954,
  "created_at": "2026-09-17T15:21:04Z"
}
```

## Endpoints that answer for Uniswap

| Endpoint | Returns | Docs |
|---|---|---|
| `GET /networks/polygon/pools/search?dex_name=uniswap_v4` | Uniswap v4 pools, sorted and filtered by volume, liquidity, transactions or age. Swap in uniswap_v3 and uniswap_v2 for the other versions. | [Reference](https://docs.dexpaprika.com/api-reference/pools/advanced-pool-filtering-on-a-specific-network) |
| `GET /networks/polygon/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/polygon/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/polygon/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/polygon/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/polygon/dexes` | Every DEX on Polygon, with each Uniswap version as its own entry. | [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 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: 0x6736…5cd6 is Uniswap v4, 0x1f98…f984 is Uniswap v3 and 0x9e5a…799c is Uniswap v2. Pool records carry dex_id directly: uniswap_v4 is Uniswap v4, uniswap_v3 is Uniswap v3 and uniswap_v2 is Uniswap v2.

### How do I list only Uniswap pools on Polygon?

Call /networks/polygon/pools/search with dex_name=uniswap_v4, then with dex_name=uniswap_v3 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 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 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 at docs.dexpaprika.com/streaming/showcase-streams, and a running price stream is on dexpaprika.com/streaming/polygon.

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

- [Uniswap API on Ethereum](https://dexpaprika.com/api/ethereum/uniswap)
- [Uniswap on Base: DEX data API](https://dexpaprika.com/api/base/uniswap)
- [Uniswap on Arbitrum: DEX data API](https://dexpaprika.com/api/arbitrum/uniswap)
- [Uniswap on Monad: DEX data API](https://dexpaprika.com/api/monad/uniswap)
- [Polygon DEX Data API](https://dexpaprika.com/api/polygon)
- [Live Polygon streaming](https://dexpaprika.com/streaming/polygon)
- [API documentation](https://docs.dexpaprika.com)
- [AI agents and skills](https://agents.dexpaprika.com)

---
*Data provided by DexPaprika | Page: Uniswap on Polygon: DEX data API | Data as of 2026-09-17 15:21 UTC*
