Skip to content
GET /v1/meta

Spec

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/gemini-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

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