/v1/ticker
24h ticker for a symbol or all markets
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/aster-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aster-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aster-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/aster-api/v1/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"low": 63653.2,
"high": 65978,
"last": 65935.2,
"open": 64537.5,
"symbol": "BTCUSDT",
"trades": 91383,
"volume": 12460.827,
"price_change": 1397.7,
"quote_volume": 811545758.88,
"weighted_avg": 65127.8,
"price_change_pct": 2.166
},
"meta": {
"timestamp": "2026-06-15T11:15:52.158Z",
"request_id": "bb52d116-9f12-412e-8ae1-3fb150cc3fd4"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}