/v1/meta
Service metadata and endpoint list
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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"e=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
}