/v1/markets
List instruments (perps, options, spot)
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/paradex-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/paradex-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/paradex-api/v1/markets");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/paradex-api/v1/markets",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 1,
"venue": "paradex",
"markets": [
{
"symbol": "BTC-USD-PERP",
"expiry_at": null,
"asset_kind": "PERP",
"min_notional": 10,
"base_currency": "BTC",
"quote_currency": "USD",
"price_tick_size": 0.1,
"max_funding_rate": 0.02,
"settlement_currency": "USDC",
"order_size_increment": 1.0e-5
}
]
},
"meta": {
"timestamp": "2026-06-15T11:16:00.880Z",
"request_id": "a65a6f10-698f-4cc1-86af-8eafbd4c8fc8"
},
"status": "ok",
"message": "Markets retrieved successfully",
"success": true
}