Obelisk DEX API

Post-Quantum Secure Decentralized Exchange

API Live Post-Quantum Ready
API Status: Operational Base URL: https://obelisk-dex.pages.dev/api

📊 Markets

GET /api/markets Get all available markets with real-time prices

Returns all trading pairs with current prices from Hyperliquid and dYdX.

Response

{ "markets": [ { "pair": "BTC/USDC", "price": 87828.50, "change24h": 2.34, "source": "Hyperliquid", "spread": 0.04 } ], "count": 50, "realtime": true }

Try It

GET /api/ticker/{pair} Get ticker for specific trading pair
ParameterTypeDescription
pair required string Trading pair (e.g., BTC/USDC)

Try It

GET /api/arbitrage Get cross-DEX arbitrage opportunities

Returns current arbitrage opportunities between Hyperliquid and dYdX.

Try It