Vai al contenuto
GET /v1/meta

Service metadata and endpoint list

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/bitflyer-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "Products are BASE_QUOTE (e.g. BTC_JPY). ltp = last traded price; volume_by_product excludes derivatives.",
        "source": "bitFlyer API (api.bitflyer.com, live)",
        "service": "bitflyer-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/board": "Live order book — mid price and top bids/asks (product=BTC_JPY, limit=20).",
            "GET /v1/ticker": "Ticker for one product (product=BTC_JPY or symbol=BTC&quote=JPY).",
            "GET /v1/markets": "List spot and FX products (type=Spot|FX optional)."
        },
        "description": "Live spot market data from bitFlyer, one of Japan's largest and longest-running crypto exchanges. The ticker endpoint returns a product's last traded price, best bid/ask, 24h volume and order-book depth (in Japanese yen); the board endpoint returns the live order book with mid price and top bids and asks; the markets endpoint lists spot and FX products. Live, no key, nothing stored. A distinct Japanese venue with yen pricing, separate from other exchange feeds.",
        "product_count": 9,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:08.438Z",
        "request_id": "59582b1b-8c90-4463-9eb6-5399a3451226"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}