Skip to content
GET /v1/ticker

24h ticker for an instrument

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/blofin-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/blofin-api/v1/ticker" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/blofin-api/v1/ticker", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/blofin-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/blofin-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": 65917.9,
        "bid": 65917.8,
        "last": 65911.1,
        "inst_id": "BTC-USDT",
        "low_24h": 63650.9,
        "ask_size": 4834,
        "bid_size": 8426,
        "high_24h": 65994.4,
        "open_24h": 64513.9,
        "timestamp": "1781522135914",
        "volume_24h": 3836979.3,
        "volume_currency_24h": 3836.9793
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:37.645Z",
        "request_id": "416a9942-691a-4def-8ffc-024ab5f43ef3"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}