/v1/meta
Spec
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}