/v1/tickers
24h tickers for all symbols or one symbol
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/coinstore-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinstore-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinstore-api/v1/tickers");
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/coinstore-api/v1/tickers",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"ask": 65914.56,
"bid": 65914.28,
"low": 63651.2,
"high": 65989.72,
"last": 65914.53,
"open": 64512.8,
"symbol": "BTCUSDT",
"ask_size": 0.003,
"bid_size": 3.768787,
"change_pct_24h": 2.1728,
"base_volume_24h": 13610124.00335853,
"quote_volume_24h": 209.260881
},
"meta": {
"timestamp": "2026-06-15T11:15:11.707Z",
"request_id": "e9ed2a22-aace-4724-afaa-73cef39f4730"
},
"status": "ok",
"message": "Tickers retrieved successfully",
"success": true
}