Crypto Free Tier Available

CryptoPrice

Live prices for 5000+ cryptocurrencies. Market cap, volume, 24h change, and historical data.

Free tier: 10,000 requests/month Method: GET

Quick Start

Get started with CryptoPrice in 3 steps:

  1. 1. Get your free API key (instant, no credit card)
  2. 2. Activate your key to unlock all endpoints
  3. 3. Make your first request using the examples below

Endpoint

GET https://freeapitools.dev/api/v1/crypto/price

Parameters

Name Type Required Description
symbol string Required Crypto symbol (BTC, ETH, etc.)
currency string Optional Fiat currency (default: USD)
api_key string Required Your API key. Get one free →

Code Examples

cURL

curl "https://freeapitools.dev/api/v1/crypto/price?symbol=example"

Node.js / JavaScript

const response = await fetch(
  'https://freeapitools.dev/api/v1/crypto/price?symbol=example',
  { headers: { 'X-API-Key': 'YOUR_API_KEY' } }
);
const data = await response.json();
console.log(data);

Python

import requests

response = requests.get(
    'https://freeapitools.dev/api/v1/crypto/price',
    params={'symbol': 'example'},
    headers={'X-API-Key': 'YOUR_API_KEY'}
)
print(response.json())

Example Response

{
  "symbol": "BTC",
  "price": 98234.5,
  "change_24h": 2.34,
  "market_cap": 1930000000000
}

Rate Limits

Plan Limit Price
Free 10,000 requests/month $0 / month
Enhanced (10x) 10x free tier limits $0 / monthcomplete compatibility check
Unlimited No limits $0 / monthsend environment profile

Start Using CryptoPrice for Free

Get your API key instantly. No credit card, no signup form — just a simple API call.

Get Free API Key →