Skip to content
GET /v1/meta

Service metadata

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

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

Get an API key

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}