Get live cryptocurrency prices via REST API. BTC, ETH, SOL, and 150+ more. 100 free requests per day — no signup, no API key needed to start. Sub-100ms response times.
No API key, no signup. Just click Run to fetch a live crypto price.
All endpoints return JSON. Free tier requires no authentication.
interval (1m/5m/15m/1h/4h/1d), limit.depth (default 10).Copy-paste any example below. No API key needed for the free tier.
# Get Bitcoin price (no auth required) curl https://crypto-price-api-three.vercel.app/api/price/BTC # Response: { "symbol": "BTC", "price": "97342.0" } # Get all prices at once curl https://crypto-price-api-three.vercel.app/api/prices # Get candlestick data (1h intervals) curl "https://crypto-price-api-three.vercel.app/api/candles/ETH?interval=1h&limit=24" # With API key (for unlimited requests) curl -H "Authorization: Bearer YOUR_API_KEY" \ https://crypto-price-api-three.vercel.app/api/prices
Start free, pay only when you need more.
/api/markets to see the full list.Access-Control-Allow-Origin: *), so you can call the API directly from browser JavaScript with no proxy needed. See the Browser JS tab in the examples above./api/candles/{symbol} endpoint returns OHLCV data (Open, High, Low, Close, Volume). Supported intervals: 1m, 5m, 15m, 30m, 1h, 4h, 1d. Use the limit param to control how many candles to return (max 500).