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

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

Get an API key

Code snippets

curl "https://api.oanor.com/btse-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/btse-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/btse-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/btse-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": "Markets are BASE-QUOTE (BTC-USD). The default quote is USD; HKD, CAD, CHF, GBP, NZD, AUD, EUR, JPY, INR, USDT and USDC are also available. quote_volume_24h is BTSE's volume (quote turnover); base_volume_24h is its size; change_24h_pct is the 24h percentage move.",
        "source": "BTSE public API (api.btse.com/spot/api/v3.2, live)",
        "service": "btse-api",
        "endpoints": {
            "GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC-USD, limit=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market (market=BTC-USD or base=BTC&quote=USD).",
            "GET /v1/markets": "Tradable pairs with base/quote (quote=USD optional).",
            "GET /v1/tickers": "All markets for a quote ranked by 24h turnover (quote=USD, limit=50)."
        },
        "description": "Live spot market data from BTSE, a global crypto exchange. The ticker endpoint returns a market's last price, best bid/ask, 24h high/low, 24h change and base/quote volume; the tickers endpoint ranks every market for a quote currency by 24h turnover; the markets endpoint lists tradable pairs with base/quote; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct multi-fiat venue quoting against USD, HKD, CAD, CHF, GBP, NZD, AUD, EUR, JPY and INR as well as USDT/USDC — useful for Hong-Kong-dollar, Canadian-dollar, Swiss-franc, pound and New-Zealand-dollar price discovery, separate from the USD/USDT-only exchange feeds.",
        "market_count": 2135,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T16:47:37.988Z",
        "request_id": "acf3ba6c-b4c8-48be-85b7-830130469c66"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}