Naar de inhoud
GET /v1/meta

Spec

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "source": "Bitfinex public API v2 (live)",
        "service": "bitfinex-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "A trading pair's ticker (symbol=tBTCUSD).",
            "GET /v1/trades": "Live trade tape for a pair (symbol=tBTCUSD, limit).",
            "GET /v1/funding": "A currency's funding/lending market with APR (currency=USD or symbol=fUSD).",
            "GET /v1/tickers": "All pairs in one call (type=trading|funding, sort=change|volume)."
        },
        "description": "Live market data from Bitfinex's public v2 API: a trading pair's ticker (bid/ask, last, 24h change and %, volume, high/low); a currency's peer-to-peer funding (margin-lending) market with the Flash Return Rate, best bid/ask lending rates and periods, and the daily rate annualised to an APR; the whole exchange in one call (all trading pairs or all funding currencies); and the live trade tape (recent trades with price, amount, side, time). Live, no key, nothing stored. Distinct from Coinbase, Binance and Kraken venue APIs and from aggregated feeds — this is Bitfinex's own order book, its margin-funding rates and tape.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:07.027Z",
        "request_id": "9eb0170c-bf12-4fb0-b918-053e4aef9480"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}