/v1/ticker
24h ticker for a market (or all)
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/backpack-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/backpack-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/backpack-api/v1/ticker");
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/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "The live 24h ticker for one Backpack market — last price, 24h change (absolute and percent), high/low, base and quote volume and trade count. Pass symbol (e.g. SOL_USDC); omit it for every market.",
"source": "Backpack",
"symbol": "SOL_USDC",
"ticker": {
"low": 66.96,
"high": 69.55,
"symbol": "SOL_USDC",
"trades": 2482,
"volume": 8086.1,
"last_price": 67.45,
"first_price": 67.94,
"price_change": -0.49,
"quote_volume": 552797.4426,
"price_change_percent": -0.007212
}
},
"meta": {
"timestamp": "2026-06-14T17:03:35.170Z",
"request_id": "61aaf3df-8f3f-4231-8843-2697917c7bcb"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}