Gemini
Live crypto ticker prices from the Gemini exchange, no key needed
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.
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
}
}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())/pubticker/btcusdPROBEDLive crypto ticker prices from the Gemini exchange, no key needed
/pubtickerPubticker — documented GET route.
/pubticker/1Pubticker details by ID (example: 1).
/pubticker?limit=10Pubticker — documented GET route.
/pubticker/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
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 unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.