Skip to content
GET /v1/ticker

Ticker for one book

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/bitso-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/bitso-api/v1/ticker" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitso-api/v1/ticker", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitso-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/bitso-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": 1070180,
        "bid": 1069720,
        "low": 1061400,
        "base": "btc",
        "book": "btc_mxn",
        "high": 1091510,
        "last": 1069990,
        "vwap": 1074985.560058218,
        "quote": "mxn",
        "source": "Bitso",
        "spread": 460,
        "change_24h": -5840,
        "created_at": "2026-06-10T22:56:26+00:00",
        "volume_24h": 6.9580661,
        "quote_volume_24h_approx": 7445061.15
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:27.150Z",
        "request_id": "12fab013-5f66-474e-adf2-a908caf451ff"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}