/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/btcmarkets-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/btcmarkets-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/btcmarkets-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/btcmarkets-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Markets are BASE-QUOTE (BTC-AUD). The default quote is the Australian dollar (AUD). quote_volume_24h is the 24h turnover in the quote currency; the open is derived from last - price24h.",
"source": "BTC Markets public API (api.btcmarkets.net/v3, live)",
"service": "btcmarkets-api",
"endpoints": {
"GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC-AUD, limit=20).",
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Ticker for one market (market=BTC-AUD or base=BTC"e=AUD).",
"GET /v1/markets": "Tradable pairs with base/quote and precision (quote=AUD optional).",
"GET /v1/tickers": "All markets for a quote ranked by 24h turnover (quote=AUD, limit=50)."
},
"description": "Live spot market data from BTC Markets, Australia's established 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 (AUD, BTC or USDT) by 24h turnover; the markets endpoint lists tradable pairs with base/quote and precision; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct Australian-dollar venue for AUD price discovery, separate from the USDT-quoted exchange feeds.",
"market_count": 49,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T07:48:39.704Z",
"request_id": "0bdf230c-83ab-4ff7-af85-f51b45550d04"
},
"status": "ok",
"message": "Meta",
"success": true
}