---
title: Cetus DEX API on Sui: pools, swaps, prices | DexPaprika
description: Pools, swaps, prices and OHLCV for Cetus on Sui over REST, with the factory ID on every swap. Free API key, no credit card.
url: https://dexpaprika.com/api/sui/cetus
type: api-dex
---

# Cetus DEX API on Sui

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

Cetus is a concentrated liquidity DEX on Sui. The API indexes its pools as cetus.

## Cetus on Sui at a glance

- **670+** active pools
- **$12.3M** volume, 24h
- **127,691** transactions, 24h

Data as of 2026-09-17 15:24 UTC, source: /networks/sui/dexes

## Cetus in the API

| Version | dex_id | factory_id | Volume, 24h |
|---|---|---|---|
| Cetus | `cetus` | `0x1eabed72c53feb3805120a081dc15963c204dc8d091542592abaf7a35689b2fb` | $12.3M |

## Your first Cetus call

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

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

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

```json
{
  "id": "2KMPEScxraSq4Em1xu2xyRC8HsTrfozg1M8VyLL573jB",
  "pool_id": "0x51e883ba7c0b566a26cbc8a94cd33eb0abd418a77cc1e60ad22fd9b1f29cd2ab",
  "factory_id": "0x1eabed72c53feb3805120a081dc15963c204dc8d091542592abaf7a35689b2fb",
  "token_0_symbol": "SUI",
  "token_1_symbol": "USDC",
  "volume_0": 181.719249237,
  "volume_1": 131.82753,
  "price_0_usd": 0.724322168685685,
  "created_at_block_number": 323743671,
  "created_at": "2026-09-17T15:23:44Z"
}
```

## Endpoints that answer for Cetus

| Endpoint | Returns | Docs |
|---|---|---|
| `GET /networks/sui/pools/search?dex_name=cetus` | Cetus 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/sui/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/sui/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/sui/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/sui/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/sui/dexes` | Every DEX on Sui, cetus 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 Cetus 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 Cetus swaps from other Sui DEXes?

Pool records carry dex_id cetus, and every swap row through them carries factory_id 0x1eab…b2fb.

### How do I list only Cetus pools on Sui?

Call /networks/sui/pools/search with dex_name=cetus. Add order_by=volume_usd_24h to get the busiest first.

### How fresh is the Cetus 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:24 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 Cetus 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/sui.

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

- [Bluefin DEX API on Sui](https://dexpaprika.com/api/sui/bluefin)
- [Sui DEX Data API](https://dexpaprika.com/api/sui)
- [Live Sui streaming](https://dexpaprika.com/streaming/sui)
- [API documentation](https://docs.dexpaprika.com)
- [AI agents and skills](https://agents.dexpaprika.com)

---
*Data provided by DexPaprika | Page: Cetus DEX API on Sui | Data as of 2026-09-17 15:24 UTC*
