---
title: Project X (PRJX) API on HyperEVM: pools, swaps | DexPaprika
description: Pools, swaps, prices and OHLCV for Project X, also written PRJX, on HyperEVM over REST, with the factory address on every swap. Free API key, no credit card.
url: https://dexpaprika.com/api/hyperevm/project_x
type: api-dex
---

# Project X (PRJX) API on HyperEVM

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

Project X, also written PRJX, is a DEX on HyperEVM. The API indexes it as project_x.

## Project X on HyperEVM at a glance

- **160+** active pools
- **$104.3M** volume, 24h
- **52,139** transactions, 24h

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

## Project X in the API

| Version | dex_id | factory_id | Volume, 24h |
|---|---|---|---|
| Project X | `project_x` | `0xff7b3e8c00e57ea31477c32a5b52a58eea47b072` | $104.3M |

## Top Project X pools on HyperEVM by 24h volume

| Pair | Version | Volume, 24h | Liquidity | Pool |
|---|---|---|---|---|
| WHYPE/USDC | Project X | $85.6M | $15.4M | [`0x6c9a…9285`](https://dexpaprika.com/hyperevm/pool/0x6c9a33e3b592c0d65b3ba59355d5be0d38259285) |
| WHYPE/USDC | Project X | $10.2M | $6.2M | [`0x422e…2f54`](https://dexpaprika.com/hyperevm/pool/0x422e586c906eb241f784b4f5a633c2c7e59a2f54) |
| WHYPE/UBTC | Project X | $4.5M | $6.6M | [`0x0d6e…2525`](https://dexpaprika.com/hyperevm/pool/0x0d6ecb912b6ee160e95bc198b618acc1bcb92525) |
| WHYPE/USD₮0 | Project X | $3.0M | $653,813.49 | [`0xbd19…b57d`](https://dexpaprika.com/hyperevm/pool/0xbd19e19e4b70eb7f248695a42208bc1edbbfb57d) |
| UBTC/USD₮0 | Project X | $1.6M | $520,577.74 | [`0xfd0c…c850`](https://dexpaprika.com/hyperevm/pool/0xfd0cb41a4a28b5ca13affe65cd5924f461b3c850) |

## Your first Project X call

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

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

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

```json
{
  "id": "0xdf85380ac4e6a0a1a47f6a83707e276b8a932bbbf0a60cde83156bfdadb61b44",
  "pool_id": "0x6c9a33e3b592c0d65b3ba59355d5be0d38259285",
  "factory_id": "0xff7b3e8c00e57ea31477c32a5b52a58eea47b072",
  "token_0_symbol": "WHYPE",
  "token_1_symbol": "USDC",
  "volume_0": 5.9998843556757055,
  "volume_1": 491.307839,
  "price_0_usd": 81.90885266889411,
  "created_at_block_number": 46158771,
  "created_at": "2026-09-17T15:20:36Z"
}
```

## Endpoints that answer for Project X

| Endpoint | Returns | Docs |
|---|---|---|
| `GET /networks/hyperevm/pools/search?dex_name=project_x` | Project X 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/hyperevm/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/hyperevm/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/hyperevm/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/hyperevm/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/hyperevm/dexes` | Every DEX on HyperEVM, project_x 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 Project X 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 Project X swaps from other HyperEVM DEXes?

Pool records carry dex_id project_x, and every swap row through them carries factory_id 0xff7b…b072.

### How do I list only Project X pools on HyperEVM?

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

### How fresh is the Project X 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 Project X 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/hyperevm.

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

- [HyperSwap API on HyperEVM](https://dexpaprika.com/api/hyperevm/hyperswap)
- [HyperEVM DEX Data API](https://dexpaprika.com/api/hyperevm)
- [Live HyperEVM streaming](https://dexpaprika.com/streaming/hyperevm)
- [API documentation](https://docs.dexpaprika.com)
- [AI agents and skills](https://agents.dexpaprika.com)

---
*Data provided by DexPaprika | Page: Project X (PRJX) API on HyperEVM | Data as of 2026-09-17 15:21 UTC*
