Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "note": "Markets are BASE_QUOTE (BTC_TL). The default quote is the Turkish lira (labelled TL; TRY is accepted as an alias). quote_volume_24h is derived as volume × last; change_24h_pct is the 24h percentage move.",
        "source": "Paribu public ticker (paribu.com/ticker, live)",
        "service": "paribu-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market (market=BTC_TL or base=BTC&quote=TL).",
            "GET /v1/markets": "Tradable pairs with base/quote (quote=TL optional).",
            "GET /v1/tickers": "All markets for a quote ranked by 24h turnover (quote=TL, limit=50)."
        },
        "description": "Live spot market data from Paribu, Turkey's largest crypto exchange. The ticker endpoint returns a market's last price, best bid/ask, 24h high/low/average, 24h change and base/quote volume; the tickers endpoint ranks every market for a quote currency (TL/TRY or USDT) by 24h turnover; the markets endpoint lists tradable pairs with base/quote. Live, no key, nothing stored. A distinct Turkish-lira venue for TRY price discovery, separate from the USD/USDT-quoted exchange feeds. Ticker-only (Paribu exposes no public order book); best bid/ask are in the ticker.",
        "market_count": 261,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:30.579Z",
        "request_id": "50e5b10a-9731-4de2-80d6-acb9cecdb7ba"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}