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

Service metadata

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

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

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

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

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

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

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

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

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

{
    "data": {
        "note": "Markets are BASE_QUOTE (BTC_UAH). The default quote is the Ukrainian hryvnia (UAH); PLN, EUR, BRL, USD, USDT and others are also available. quote_volume_24h is EXMO's vol_curr (quote turnover). EXMO does not report an open price, so no 24h change is given — high/low/avg describe the day's range.",
        "source": "EXMO public API (api.exmo.com/v1.1, live)",
        "service": "exmo-api",
        "endpoints": {
            "GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_UAH, limit=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market (market=BTC_UAH or base=BTC&quote=UAH).",
            "GET /v1/markets": "Tradable pairs with base/quote and limits (quote=UAH optional).",
            "GET /v1/tickers": "All markets for a quote ranked by 24h turnover (quote=UAH, limit=50)."
        },
        "description": "Live spot market data from EXMO, a European/CIS crypto exchange. The ticker endpoint returns a market's last price, best bid/ask, 24h high/low/average and base/quote volume; the tickers endpoint ranks every market for a quote currency by 24h turnover; the markets endpoint lists tradable pairs with base/quote and limits; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct multi-fiat venue quoting against UAH, PLN, EUR, BRL and USD as well as USDT — useful for Ukrainian-hryvnia and Polish-złoty price discovery, separate from the USD/USDT-only exchange feeds.",
        "market_count": 186,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:45:05.716Z",
        "request_id": "8eef2d0b-4b3d-48dc-b64e-e73a2175858f"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}