/v1/markets
Tradable pairs with precision and limits
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/bitmart-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitmart-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitmart-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/bitmart-api/v1/markets",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 1353,
"quote": "USDT",
"source": "BitMart",
"markets": [
{
"base": "HOODON",
"quote": "USDT",
"market": "HOODON_USDT",
"base_min_size": 0.01,
"min_buy_amount": 5,
"min_sell_amount": 5,
"quote_increment": 0.01,
"price_max_precision": 2
},
{
"base": "$NUT",
"quote": "USDT",
"market": "$NUT_USDT",
"base_min_size": 1,
"min_buy_amount": 5,
"min_sell_amount": 5,
"quote_increment": 1,
"price_max_precision": 6
},
{
"base": "WCT",
"quote": "USDT",
"market": "WCT_USDT",
"base_min_size": 0.1,
"min_buy_amount": 5,
"min_sell_amount": 5,
"quote_increment": 0.1,
"price_max_precision": 5
},
{
"base": "OGN",
"quote": "USDT",
"market": "OGN_USDT",
"base_min_size": 0.1,
"min_buy_amount": 5,
"min_sell_amount": 5,
"quote_increment": 0.1,
"price_max_precision": 4
},
{
"base": "FF",
"quote": "USDT",
"market": "FF_USDT",
"base_min_size": 0.1,
"min_buy_amount": 5,
"min_sell_amount": 5,
"quote_increment": 0.1,
"price_max_precision": 5
},
{
"base": "QNT",
"quote": "USDT",
"market": "QNT_USDT",
"base_min_size": 0.001,
"min_buy_amount": 5,
"min_sell_amount": 5,
"quote_increment": 0.001,
"price_max_precision": 2
},
{
"base": "KAITO",
"quote": "USDT",
"market": "KAITO_USDT",
"base_min_size": 0.1,
"min_buy_amount": 5,
"min_sell_amount": 5,
"quote_increment": 0.1,
"price_max_precision": 4
},
{
"base": "HUMO",
"quote": "USDT",
"market": "HUMO_USDT",
"base_min_size": 0.01,
"min_buy_amount": 5,
"min_sell_amount": 5,
"quote_increment": 0.01,
"price_max_precision": 4
},
{
"base": "AALON",
"quote": "USDT",
"market": "AALON_USDT",
"base_min_size": 0.01,
"min_buy_amount": 5,
"min_sell_amount": 5,
"quote_increment": 0
…