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

Spec

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

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

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

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

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

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

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

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

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

{
    "data": {
        "note": "Spot markets are BASE_QUOTE (e.g. BTC_USD); perpetuals are excluded. volume_quote_24h is the 24h volume in the quote currency.",
        "source": "Crypto.com Exchange API (api.crypto.com/exchange/v1/public, live)",
        "service": "cryptocom-api",
        "endpoints": {
            "GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_USD, depth=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one spot market (market=BTC_USD or symbol=BTC&quote=USD).",
            "GET /v1/tickers": "All spot markets for a quote ranked by 24h quote volume (quote=USD, limit=50).",
            "GET /v1/instruments": "Tradable spot pairs with tick sizes (quote=USD optional)."
        },
        "description": "Live spot market data from the Crypto.com Exchange, one of the largest global retail crypto venues (the CRO ecosystem). 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 spot market for a quote currency by 24h quote volume; the instruments endpoint lists tradable spot pairs with tick sizes and precision; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct global venue, separate from other exchange feeds.",
        "upstream_status": "ok",
        "spot_market_count": 591
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:27.820Z",
        "request_id": "ffd74c08-da1b-4700-b459-a7fe4a868931"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}