Coinbase

Crypto and fiat exchange rates from Coinbase

AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

Coinbase's public v2 endpoints return exchange rates, spot/buy/sell prices and currency lists with no authentication. Pass any base currency to /exchange-rates for a full cross-rate map. Ideal for lightweight crypto tickers and converters.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
GET https://api.coinbase.com/v2/exchange-rates?currency=BTC

{
  "data": {
    "currency": "BTC",
    "rates": {
      "00": "16399121.881394959641624516",
      "1INCH": "875099.720829489625627842",
      "2Z": "877054.080491894913559387",
      "A8": "11587520.568290730958865651",
      "AAVE": "706.2146892655367232",
      "ABT": "301016.738609112709305355",
      "ACH": "13962622.914349276972223886",
      "ACS": "489181527.669524551832730566"
    }
  }
}
Call itcurl · fetch · python
curl "https://api.coinbase.com/v2/exchange-rates?currency=BTC"
const res = await fetch("https://api.coinbase.com/v2/exchange-rates?currency=BTC");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://api.coinbase.com/v2/exchange-rates?currency=BTC")
print(res.json())
Endpoints · 3On scheduleFULL DOCS ↗
On schedule — GET /exchange-rates?currency=BTC awaits first probe
GET/exchange-rates?currency=BTCPROBED

Crypto and fiat exchange rates from Coinbase

GET/exchange-rates?limit=5

Exchange Rates — documented GET route.

GET/exchange-rates?page=1

Exchange Rates — documented GET route.

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

Not tracked yet. Shape-change history starts once this API joins our probe schedule.

Coinbase: common questions

Is Coinbase free to use?

Yes — Coinbase is a free crypto & web3 API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.

Does Coinbase need an API key?

No — Coinbase needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call Coinbase from the browser?

Yes — Coinbase 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 Coinbase up right now?

Coinbase is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.