Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/coinmate-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "Markets are BASE_QUOTE (BTC_CZK). The default quote is the Czech koruna (CZK); EUR is also available. quote_volume_24h is derived as amount × last; change_24h_pct is CoinMate's 24h percentage move.",
        "source": "CoinMate public API (coinmate.io/api, live)",
        "service": "coinmate-api",
        "endpoints": {
            "GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_CZK, limit=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market (market=BTC_CZK or base=BTC&quote=CZK).",
            "GET /v1/markets": "Tradable pairs with base/quote (quote=CZK optional).",
            "GET /v1/tickers": "All markets for a quote ranked by 24h turnover (quote=CZK, limit=50)."
        },
        "description": "Live spot market data from CoinMate, a long-running European (Czech) crypto exchange. The ticker endpoint returns a market's last price, best bid/ask, 24h high/low/open, 24h change and base/quote volume; the tickers endpoint ranks every market for a quote currency (CZK, EUR or BTC) 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 Czech-koruna / euro venue, separate from the USD/USDT-quoted exchange feeds.",
        "market_count": null,
        "upstream_status": null
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:25.593Z",
        "request_id": "ec021464-c114-411c-b383-7ea234c5aecd"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}