Paragon DEX API
Public Market Data API v1
This public API provides exchange, pair, token, and recent-trade market data for Paragon DEX on BNB Smart Chain. It is intended for market discovery, listing review, analytics, and external read-only integrations such as CoinMarketCap exchange assessment.
Default network
BNB Smart Chain (56)
Primary market
XPGN / USDT
Factory
0x6205...4dcB
Endpoint Inventory
| Method | Path | Purpose | Example |
|---|---|---|---|
| GET | /v1/exchange/summary | Exchange-level summary for Paragon DEX on the requested chain. | /v1/exchange/summary?chainId=56 |
| GET | /v1/pairs | Paginated list of tracked spot pairs, liquidity, price, and 24h volume. | /v1/pairs?chainId=56&limit=100&skip=0 |
| GET | /v1/pairs/{pairAddress} | Detailed market snapshot, 24h price range, and recent trades for one pair. | /v1/pairs/0x2fa6410e20b24e130b77c024f65986cd73d9f29a?chainId=56 |
| GET | /v1/tokens | Token inventory derived from tracked pairs with pair count and aggregate liquidity. | /v1/tokens?chainId=56 |
| GET | /v1/trades | Recent trades for a pair, normalized into base/quote market orientation. | /v1/trades?chainId=56&pair=0x2fa6410e20b24e130b77c024f65986cd73d9f29a&limit=50 |
Response Notes
- `chainId` is optional and defaults to BNB Smart Chain mainnet.
- `pairs` and `tokens` endpoints support lightweight pagination through `limit` and `skip`.
- `trades` requires a lowercase or checksum pair address and supports `limit` up to 100.
- Market orientation is normalized to trading semantics, so quote assets such as `USDT` and `WBNB` remain consistent across pairs.
Security Posture
- Read-only public surface. No write, auth, or wallet-custody operations are exposed through these endpoints.
- Per-route rate limiting with standard rate-limit headers on every response.
- CORS is limited to safe read-only usage for GET and OPTIONS.
- Security headers include no-sniff and strict referrer policy defaults.
- Public responses are normalized to BNB Smart Chain mainnet by default and reject invalid pair identifiers.