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

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

Get an API key

Code snippets

curl "https://api.oanor.com/biconomy-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/biconomy-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/biconomy-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/biconomy-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": "Pass markets as BTC_USDT (base and quote separated by '_'). Best bid/ask come from /v1/book; quote_volume_24h is the 24h turnover in the quote currency; change_24h_pct is the 24h percentage move.",
        "source": "Biconomy public API (www.biconomy.com/api/v1, live)",
        "service": "biconomy-api",
        "endpoints": {
            "GET /v1/book": "Live order-book depth — real best bid/ask and spread (market=BTC_USDT, limit=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market — last, 24h high/low, change, volume (market=BTC_USDT).",
            "GET /v1/markets": "Tradable pairs with base/quote and precision (quote=USDT optional).",
            "GET /v1/tickers": "All spot markets for a quote ranked by 24h turnover (quote=USDT, limit=50)."
        },
        "description": "Live spot market data from Biconomy, a global crypto exchange. The ticker endpoint returns a market's last price, 24h high/low, 24h change and base/quote volume; the tickers endpoint ranks every spot market for a quote currency by 24h turnover; the markets endpoint lists tradable pairs with base/quote and precision; the book endpoint returns live order-book depth with the real best bid/ask and spread. Live, no key, nothing stored. A distinct global venue, separate from other exchange feeds.",
        "market_count": 1432,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:46.029Z",
        "request_id": "7f2638f0-5106-4d1a-9aaf-84a41cc9d6d7"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}