/v1/ticker
Live ticker for a pair
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/coinbase-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinbase-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinbase-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/coinbase-api/v1/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"ask": 62529.73,
"bid": 62529.72,
"pair": "BTC-USD",
"time": "2026-06-09T11:38:32.504190595Z",
"price": 62529.72,
"source": "Coinbase Exchange",
"spread": 0.01,
"spread_pct": 0,
"volume_24h": 9959.80876656,
"last_trade_id": 1034968658
},
"meta": {
"timestamp": "2026-06-09T11:38:34.001Z",
"request_id": "2c4849c7-fdba-4e5d-a9c8-8fe2cc97ec37"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}