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

Spec

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

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

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

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

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

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

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

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

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

{
    "data": {
        "source": "Gate.io public API v4 (live)",
        "service": "gateio-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "A pair's ticker (pair=BTC_USDT).",
            "GET /v1/candles": "OHLC candlesticks (pair=ETH_USDT, interval=10s..30d).",
            "GET /v1/tickers": "All ~2,200 pairs in one call (sort=change|volume).",
            "GET /v1/currency": "A coin's per-chain deposit/withdrawal status (currency=USDT)."
        },
        "description": "Live market data from Gate.io's public v4 API: a pair's ticker (last, bid/ask, 24h change %, base/quote volume, 24h high/low); every one of ~2,200 pairs in one call (sortable) — a sweep of the whole altcoin market; OHLC candlesticks at a chosen interval; and the deposit/withdrawal status of any coin across every blockchain it supports (enabled per chain, delisted, trade-disabled). Live, no key, nothing stored. Distinct from Coinbase, Bitstamp, OKX and Kraken venue APIs — this is Gate.io's deep altcoin order flow and its per-chain deposit/withdrawal status.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T20:24:46.335Z",
        "request_id": "1a63320e-263d-4b53-93bd-085ea07288e0"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}