/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/gemini-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gemini-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gemini-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/gemini-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "Gemini public API (live)",
"service": "gemini-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/prices": "Every Gemini pair with price + 24h change (sort=change).",
"GET /v1/ticker": "A pair's ticker + 24 hourly prices (symbol=btcusd).",
"GET /v1/trades": "Live trade tape (symbol=btcusd, limit).",
"GET /v1/orderbook": "Top of the order book with spread (symbol=btcusd, depth)."
},
"description": "Live market data from Gemini, the US-regulated crypto exchange, from its public API: a pair's ticker (open/high/low/last, bid/ask, 24h % change) plus Gemini's hourly_changes array of the last 24 hourly prices for an intraday sparkline from one call; every pair in one call with price and 24h change; the order book with spread; and the live trade tape. Live, no key, nothing stored. Distinct from Coinbase, Bitstamp, OKX, Gate.io and Kraken venue APIs and from aggregated feeds — this is Gemini's own order book, tape and hourly price history.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T20:24:39.756Z",
"request_id": "4046d809-0e45-4626-8ad6-91a2642b0704"
},
"status": "ok",
"message": "Meta",
"success": true
}