Live Cryptocurrency Prices

Track real-time prices and market data for top cryptocurrencies

API Documentation

Access real-time cryptocurrency data through our simple REST API

Base URL

https://api.coinlore.net/api

Endpoints

GET /tickers/

Get list of tickers for cryptocurrencies

Query Parameters:

  • limit - Number of results (default: 100, max: 100)
  • start - Start position (default: 0)

Example:

/tickers/?limit=10
GET /ticker/?id=90

Get data for a specific cryptocurrency

Query Parameters:

  • id - Cryptocurrency ID (required)

Example:

/ticker/?id=90

Response Format

All API responses return JSON with the following structure:

{ "data": [ { "id": "90", "symbol": "BTC", "name": "Bitcoin", "price_usd": "65000.00", "percent_change_24h": "2.5", "market_cap_usd": "1300000000000", "volume24": "30000000000" } ] }

📊 Updates: Market data refreshes every 30 seconds

✅ No Authentication: Free public API, no keys required

âš¡ Rate Limit: Generous limits for public access