Zum Inhalt springen
GET /v1/meta

Spec

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/gateio-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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
}