Live — 150+ Cryptocurrencies

Free Crypto Price API
Real-Time Prices, No Auth Required

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.

BTC
Loading...
ETH
Loading...
SOL
Loading...
BNB
Loading...
AVAX
Loading...
DOGE
Loading...
150+
Cryptocurrencies
<100ms
Response Time
100
Free Req/Day
REST
API Format
24/7
Uptime

Try the API Right Now

No API key, no signup. Just click Run to fetch a live crypto price.

// Click "Run" to fetch a live crypto price // No API key required
GET https://crypto-price-api-three.vercel.app/api/price/BTC
Free tier: 100 requests/day per IP. No signup required. Get API key for unlimited access.

Endpoints

All endpoints return JSON. Free tier requires no authentication.

GET
/api/price/{symbol}
Get current price for a single coin. Symbol: BTC, ETH, SOL, etc.
Free
GET
/api/prices
Get all coin prices at once. Returns 150+ symbols in one request.
Free
GET
/api/markets
List all available markets with metadata (leverage limits, decimals).
Free
GET
/api/candles/{symbol}
OHLCV candlestick data. Params: interval (1m/5m/15m/1h/4h/1d), limit.
Free
GET
/api/market/{symbol}
Detailed market info for a single symbol including leverage and tick size.
Free
GET
/api/book/{symbol}
Level-2 order book depth (bids + asks). Param: depth (default 10).
Free

Get Started in 30 Seconds

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

Simple, Transparent Pricing

Start free, pay only when you need more.

Free Tier
$0 / forever
No signup, no credit card. Just make requests.
  • 100 API calls per day
  • All endpoints included
  • Real-time price data
  • OHLCV candlestick data
  • No API key required
  • JSON format
Try it now →

Frequently Asked Questions

Do I need an API key to get started?
No. The free tier allows 100 requests per day with no signup and no API key. Just make HTTP GET requests to the endpoints. When you need more than 100 requests/day, get an API key for unlimited access.
What cryptocurrencies are supported?
We support 150+ perpetual futures markets from Hyperliquid including all major coins: Bitcoin (BTC), Ethereum (ETH), Solana (SOL), BNB, Avalanche (AVAX), Dogecoin (DOGE), Chainlink (LINK), and hundreds more. Call /api/markets to see the full list.
How real-time are the prices?
Prices are sourced directly from Hyperliquid's perpetual futures markets. They reflect current mid-prices (midpoint between best bid and ask) with sub-second freshness. Response times are typically under 100ms.
How do I pay for the Pro tier?
The Pro tier is powered by the Agent Gateway. Get a free API key at agent-gateway-kappa.vercel.app, then top up with USDC on the Base blockchain. Credits never expire. $1 USDC = 500 API calls.
Is there CORS support for browser usage?
Yes. CORS is fully enabled (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.
What does the candlestick endpoint return?
The /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).