Naar de inhoud
GET /v1/tickers

24h tickers for all symbols or one symbol

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/phemex-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/phemex-api/v1/tickers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/phemex-api/v1/tickers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/phemex-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/phemex-api/v1/tickers",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "ask": 65891.6,
        "bid": 65891.5,
        "low": 63650.9,
        "high": 65997,
        "last": 65890.2,
        "mark": 65891.6,
        "open": 64521.3,
        "index": 65930.94954504,
        "symbol": "BTCUSDT",
        "timestamp": 1781522129699943700,
        "volume_24h": 4187.3963,
        "funding_rate": -0.00010794,
        "turnover_24h": 272146079.05386,
        "open_interest": 2308.9361234,
        "change_pct_24h": 2.1216,
        "pred_funding_rate": -0.00010794
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:30.187Z",
        "request_id": "3fd7337a-9c9a-4fed-b794-a38797bfddd4"
    },
    "status": "ok",
    "message": "Tickers retrieved successfully",
    "success": true
}