Gemini

Live crypto ticker prices from the Gemini exchange, no key needed

🪙 Crypto & Web3HEALTHYchecked 48 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

Gemini's public REST endpoints expose real-time market data for its cryptocurrency pairs without any authentication. The pubticker route returns the current bid, ask, last trade, and rolling 24h volume for a symbol like BTC/USD. Handy for quick price widgets and lightweight trading tools.

89HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: 89 · healthy
Uptime history
99.02%90 days
98.3%30 days
674P50 · ms
1865P95 · ms
operationalpartialdownno data
Response time · last 48 checks
Fastest 131 ms, slowest 1562 ms, most recent 367 ms.
Live response samplecaptured by our last successful check
GET https://api.gemini.com/v1/pubticker/btcusd

{
  "bid": "62682.62000",
  "ask": "62682.63000",
  "last": "62682.63000",
  "volume": {
    "BTC": "81.8622967",
    "USD": "5131344.054996321",
    "timestamp": 1783246980000
  }
}
Call itcurl · fetch · python
curl "https://api.gemini.com/v1/pubticker/btcusd"
const res = await fetch("https://api.gemini.com/v1/pubticker/btcusd");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://api.gemini.com/v1/pubticker/btcusd")
print(res.json())
Endpoints · 5HealthyFULL DOCS ↗
Monitored path responding — GET /pubticker/btcusd674 mschecked 48 min ago
GET/pubticker/btcusdPROBED

Live crypto ticker prices from the Gemini exchange, no key needed

GET/pubticker

Pubticker — documented GET route.

GET/pubticker/1

Pubticker details by ID (example: 1).

GET/pubticker?limit=10

Pubticker — documented GET route.

GET/pubticker/search?q=test

Search by query parameters.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

Gemini: common questions

Is Gemini free to use?

Yes — Gemini is a free crypto & web3 API. Free tier: Public market data endpoints are keyless and free. Whether the free tier allows commercial use is unclear — check the provider docs.

Does Gemini need an API key?

No — Gemini needs no API key or signup. You can call it straight away; rate limits still apply (Public API throttled per IP (specific numeric limit not confirmed at probe time)).

Can I call Gemini from the browser?

Yes — Gemini returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.

Is Gemini up right now?

As of our last scheduled check, Gemini is healthy with 99.02% uptime over 90 days and a 674 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.