/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/coincheck-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coincheck-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coincheck-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/coincheck-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "The ticker and orderbook are the BTC/JPY flagship market (Coincheck exposes those for BTC). trades and rate accept any listed pair (btc_jpy, eth_jpy, xrp_jpy, etc_jpy …); BTCJPY / BTC-JPY are normalised. rate returns the coin's current JPY price.",
"source": "Coincheck public API (coincheck.com/api, live)",
"service": "coincheck-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/rate": "Current JPY price of any listed coin (pair=eth_jpy).",
"GET /v1/ticker": "Live BTC/JPY summary — last, bid, ask, 24h high/low/volume.",
"GET /v1/trades": "Most recent executed trades for a pair (pair=btc_jpy, limit=30).",
"GET /v1/orderbook": "Live BTC/JPY bid/ask depth with best bid/ask and spread (limit=20)."
},
"description": "Live market data from Coincheck, one of Japan's largest retail crypto exchanges (Monex Group), via its public REST API. The single-venue Japanese-Yen (JPY) view: ticker (live BTC/JPY summary — last, bid, ask, 24h high/low/volume), orderbook (live BTC/JPY bid/ask depth with spread), trades (most recent executions for any listed pair) and rate (current JPY price of any listed coin). Live, no key, nothing stored. A single-venue JPY-denominated view distinct from the aggregated cross-exchange, whole-market and other regional exchange APIs.",
"btc_jpy_last": 10148771,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:42:06.923Z",
"request_id": "0362eba3-3e1c-43d9-be73-ba7496291aaa"
},
"status": "ok",
"message": "Meta",
"success": true
}