Project X (PRJX) API on HyperEVM
Project X, also written PRJX, is a DEX on HyperEVM. The API indexes it as project_x. Pools, prices, OHLCV candles and individual swaps come back over REST, with streaming in preview.
Data as of 2026-09-17 14:31 UTC, source: /networks/hyperevm/dexes
Project X swaps on HyperEVM
Each row is one swap from the transactions endpoint: the pair, its value in USD at the time, and the Project X version it went through.
- WHYPE/USDC$3.20Project X
- WHYPE/USDC$40.09Project X
- WHYPE/USDC$2,435.72Project X
- WHYPE/USDC$2,654.26Project X
- WHYPE/USDC$25,744.55Project X
- WHYPE/USDC$4,002.45Project X
- WHYPE/USDC$16,233.39Project X
- WHYPE/USDC$1.14Project X
- WHYPE/USDC$5,976.85Project X
- WHYPE/USDC$950.28Project X
- WHYPE/USDC$1.50Project X
- WHYPE/USDC$63.09Project X
- WHYPE/USDC$1.06Project X
- WHYPE/USDC$1,391.05Project X
- WHYPE/USDC$5,467.88Project X
- WHYPE/USDC$8,778.11Project X
- WHYPE/USDC$39.95Project X
- WHYPE/USDC$2,305.83Project X
- WHYPE/USDC$7,173.40Project X
- WHYPE/USDC$3,187.01Project X
- WHYPE/USDC$10.43Project X
- WHYPE/USDC$13,153.45Project X
- WHYPE/USDC$13,806.57Project X
- WHYPE/USDC$2,824.06Project X
- WHYPE/USDC$30.90Project X
- WHYPE/USDC$6,505.12Project X
- WHYPE/USDC$6.12Project X
- WHYPE/USDC$56.47Project X
- WHYPE/USDC$3,953.71Project X
- UBTC/WHYPE$8,554.58Project X
- UBTC/WHYPE$2,245.76Project X
- UBTC/WHYPE$1,025.97Project X
- WHYPE/USDC$3,428.28Project X
- WHYPE/USDC$325.90Project X
- WHYPE/USDC$1,504.00Project X
- UBTC/WHYPE$1,954.53Project X
- WHYPE/USDC$12,753.86Project X
- UBTC/WHYPE$10,223.74Project X
- WHYPE/USDC$1,979.43Project X
- WHYPE/USDC$3,377.99Project X
- WHYPE/USDC$7,984.57Project X
- UBTC/WHYPE$9,168.64Project X
- UBTC/WHYPE$5,374.03Project X
- WHYPE/USDC$7,026.79Project X
- UBTC/WHYPE$6,104.22Project X
- WHYPE/USDC$328.84Project X
- UBTC/WHYPE$3,183.36Project X
- WHYPE/USDC$2,832.13Project X
- UBTC/WHYPE$3,477.89Project X
- WHYPE/USDC$1,518.84Project X
- UBTC/WHYPE$2,527.76Project X
- WHYPE/USDC$1,513.65Project X
- WHYPE/USDC$1,648.14Project X
- WHYPE/USDC$360.09Project X
- WHYPE/USDC$1,254.63Project X
- WHYPE/USDC$1,660.36Project X
- UBTC/WHYPE$1,983.34Project X
- UBTC/WHYPE$348.11Project X
- WHYPE/USDC$771.74Project X
- UBTC/WHYPE$1,026.91Project X
Your first Project X 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 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"curl "https://api.dexpaprika.com/networks/hyperevm/pools/0x6c9a33e3b592c0d65b3ba59355d5be0d38259285/transactions?limit=1"{
"id": "0x1131da4af44d34b28181df987fbddc07f6ac210cb30375fd560750fd5d5d70ba",
"pool_id": "0x6c9a33e3b592c0d65b3ba59355d5be0d38259285",
"factory_id": "0xff7b3e8c00e57ea31477c32a5b52a58eea47b072",
"token_0_symbol": "WHYPE",
"token_1_symbol": "USDC",
"volume_0": 0.03855447772314558,
"volume_1": 3.199341,
"price_0_usd": 83.08944710176685,
"created_at_block_number": 46155762,
"created_at": "2026-09-17T14:31:16Z"
}Response the API returned at 2026-09-17 14:31 UTC, trimmed to 10 fields. Try it sends this request from your browser.
Project X in the API
Pool records carry dex_id. Swap rows carry factory_id, the contract the swap went through.
| Version | dex_id | factory_id | Volume, 24h |
|---|---|---|---|
| Project X | project_x | 0xff7b3e…47b072 | $104.3M |
Data as of 2026-09-17 14:31 UTC, source: /networks/hyperevm/dexes
Top Project X pools on HyperEVM by 24h volume
| Pair | Version | Volume, 24h | Liquidity |
|---|---|---|---|
| WHYPE/USDC | Project X | $82.4M | $15.3M |
| WHYPE/USDC | Project X | $9.9M | $6.2M |
| WHYPE/UBTC | Project X | $4.3M | $6.6M |
| WHYPE/USD₮0 | Project X | $2.9M | $657,062.82 |
| UBTC/USD₮0 | Project X | $1.6M | $522,281.94 |
Endpoints that answer for Project X
The same paths work on every chain we index. Full reference in the docs.
| 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 |
| GET /networks/hyperevm/pools/{address} | Liquidity, reserves, pricing and metadata for one pool. | reference |
| GET /networks/hyperevm/pools/{address}/transactions | Recent swaps, liquidity adds and removes for a pool, with token symbols and USD prices. | reference |
| GET /networks/hyperevm/pools/{address}/ohlcv | Candles for a pool at intervals from 1 minute to 24 hours. | reference |
| GET /networks/hyperevm/tokens/{address} | Latest price, metadata and summary metrics for one token. | reference |
| GET /networks/hyperevm/dexes | Every DEX on HyperEVM, project_x among them. | reference |
| SSE /sse/transactions | Swaps on a pool or token, pushed as they land. In preview. | reference |
Streaming Project X 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 HyperEVM streaming page.
What it costs
One call is one credit on your plan. Current quotas and rates are on the pricing page.
- A free API key, no credit card
- Every endpoint on this page
- Data can run a short way behind the chain
- Real-time data on every endpoint
- Higher request ceilings
- Its own hosts: api-pro and streaming-pro
Project X API 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 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 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 in the showcase streams docs, and a running price stream is on the HyperEVM 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 Project X on HyperEVM
Every call on this page is one paste away. Plans decide how many you can make and how fresh the data is.