/v1/markets
All spot & perp markets
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/backpack-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/backpack-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/backpack-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/backpack-api/v1/markets",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Every spot and perpetual market listed on Backpack — each with its symbol, base/quote assets, market type (SPOT or PERP) and order-book state. Pass type=SPOT or type=PERP to filter. Use a symbol with the ticker, order-book, klines, trades and funding endpoints.",
"type": "PERP",
"count": 84,
"source": "Backpack",
"markets": [
{
"base": "SOL",
"quote": "USDC",
"status": "Open",
"symbol": "SOL_USDC_PERP",
"created_at": "2025-01-21T06:34:54.691858",
"market_type": "PERP"
},
{
"base": "BTC",
"quote": "USDC",
"status": "Open",
"symbol": "BTC_USDC_PERP",
"created_at": "2025-01-21T06:34:54.691858",
"market_type": "PERP"
},
{
"base": "ETH",
"quote": "USDC",
"status": "Open",
"symbol": "ETH_USDC_PERP",
"created_at": "2025-01-21T06:34:54.691858",
"market_type": "PERP"
},
{
"base": "XRP",
"quote": "USDC",
"status": "Open",
"symbol": "XRP_USDC_PERP",
"created_at": "2025-01-28T07:19:32.810746",
"market_type": "PERP"
},
{
"base": "SUI",
"quote": "USDC",
"status": "Open",
"symbol": "SUI_USDC_PERP",
"created_at": "2025-01-28T20:14:20.882303",
"market_type": "PERP"
},
{
"base": "DOGE",
"quote": "USDC",
"status": "Open",
"symbol": "DOGE_USDC_PERP",
"created_at": "2025-01-28T20:14:31.586836",
"market_type": "PERP"
},
{
"base": "JUP",
"quote": "USDC",
"status": "Open",
"symbol": "JUP_USDC_PERP",
"created_at": "2025-01-31T21:22:53.801156",
"market_type": "PERP"
},
{
"base": "TRUMP",
"quote": "USDC",
"status": "Open",
"symbol": "TRUMP_USDC_PERP",
"created_at": "2025-01-31T21:23:03.217894",
"market_type": "PERP"
},
{
"base": "WIF",
"quote": "USDC",
"status": "Open",
"symbol": "WIF_USDC_PERP",
"created_at": "2025-02-04T02:00:18.814963",
"market_type": "PERP"
},
{
"base": "BERA",
"quote": "USDC",
"status": "Open",
"symbol": "BERA_USDC_PERP",
"created_at": "2
…