Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/firi-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Build a pair from coin + fiat (coin=btc, fiat=nok → BTCNOK) or pass pair=ETHDKK directly. Fiats are NOK and DKK. Coins traded include BTC, ETH, XRP, SOL, ADA, LTC, BNB, DOT and USDC.",
        "source": "Firi public API (api.firi.com/v2, live)",
        "service": "firi-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Full market summary for a pair (coin=btc, fiat=nok).",
            "GET /v1/trades": "Most recent executed trades (coin=eth, fiat=nok, limit=20).",
            "GET /v1/markets": "Every NOK and DKK pair with last price and day volume.",
            "GET /v1/orderbook": "Live limit-order book with depth and spread (coin=btc, fiat=nok, limit=20)."
        },
        "description": "Live order-book exchange data from Firi, the regulated Norwegian crypto venue (the largest in the Nordics), over its public API. The regional venue view for the Norwegian krone (NOK) and Danish krone (DKK) order books — Nordic on-exchange price discovery. ticker = a pair's full market summary (last, 24h high/low, 24h change %, day volume, live best bid/ask/spread); orderbook = the live limit-order book (top bids/asks, cumulative depth, spread); trades = the most recent executed trades (price, amount, side, time); markets = every NOK and DKK pair with last price and day volume. Live, no key, nothing stored.",
        "markets_traded": 11,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:42.825Z",
        "request_id": "15ee8f8f-b359-48b5-b4ba-10052d0670aa"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}