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

Service metadata

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

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

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

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

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

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

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

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

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

{
    "data": {
        "source": "Bitget API v2 (api.bitget.com, live)",
        "service": "bitget-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "A symbol's ticker (symbol=BTCUSDT, market=spot|futures).",
            "GET /v1/funding": "A perpetual's funding rate, interval, next funding time and open interest (symbol=BTCUSDT).",
            "GET /v1/tickers": "Top symbols by 24h volume (market=spot|futures, limit=25)."
        },
        "description": "Live market data from Bitget, a top-tier centralised crypto exchange. The ticker endpoint returns a spot or USDT-perpetual symbol's last price, bid/ask, 24h high/low, volume and change; the tickers endpoint returns the top symbols by 24h volume for the spot or futures market; the funding endpoint returns a perpetual contract's current funding rate, funding interval, next funding time and open interest. Live, no key, nothing stored. Distinct centralised-exchange venue — separate from other exchange feeds and from DEX, lending and oracle APIs — this is Bitget's own spot and USDT-perpetual ticker, funding-rate and open-interest layer.",
        "upstream_status": "ok",
        "spot_symbol_count": 1002
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:57.989Z",
        "request_id": "d04f1f09-2cc1-446f-ade5-f436455cab1f"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}