/v1/markets
Market specs — trading limits, scales and status
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/luno-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/luno-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/luno-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/luno-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": 25,
"quote": "ZAR",
"source": "Luno",
"markets": [
{
"base": "SONIC",
"quote": "ZAR",
"market": "SONICZAR",
"status": "ACTIVE",
"fee_scale": 8,
"max_price": 10000,
"min_price": 1,
"max_volume": 100000,
"min_volume": 0.1,
"price_scale": 2,
"volume_scale": 2
},
{
"base": "SKY",
"quote": "ZAR",
"market": "SKYZAR",
"status": "ACTIVE",
"fee_scale": 8,
"max_price": 100,
"min_price": 0.01,
"max_volume": 100000,
"min_volume": 10,
"price_scale": 4,
"volume_scale": 0
},
{
"base": "INJ",
"quote": "ZAR",
"market": "INJZAR",
"status": "ACTIVE",
"fee_scale": 8,
"max_price": 100000,
"min_price": 1,
"max_volume": 10000,
"min_volume": 0.001,
"price_scale": 2,
"volume_scale": 2
},
{
"base": "DOGE",
"quote": "ZAR",
"market": "DOGEZAR",
"status": "ACTIVE",
"fee_scale": 8,
"max_price": 1000,
"min_price": 0.1,
"max_volume": 10000000,
"min_volume": 10,
"price_scale": 4,
"volume_scale": 0
},
{
"base": "SNX",
"quote": "ZAR",
"market": "SNXZAR",
"status": "ACTIVE",
"fee_scale": 8,
"max_price": 10000,
"min_price": 1,
"max_volume": 100000,
"min_volume": 0.1,
"price_scale": 2,
"volume_scale": 2
},
{
"base": "TRX",
"quote": "ZAR",
"market": "TRXZAR",
"status": "ACTIVE",
"fee_scale": 8,
"max_price": 10000,
"min_price": 1,
"max_volume": 100000,
"min_volume": 0.1,
"price_scale": 2,
"volume_scale": 2
},
{
"base": "XLM",
"quote": "ZAR",
"market": "XLMZAR",
"status": "ACTIVE",
"fee_scale": 8,
"max_price": 1000,
"min_price": 0.1,
"max_volume": 1000000,
"min_volume": 0.1,
"price_scale": 4,
"volume_scale": 2
},
{
"base": "ALGO",
…