v1

latestOpenAPI 3.0.32026-08-04850206.9 KB
Coins

Get coin detail

Full single-coin profile. Beyond the list fields it adds: supply (circulating/total/max), today OHLC, all_time_high / all_time_low (price, date and percent_from the current price), fully_diluted_valuation, market counts (exchanges/pairs/tickers/wallets), decimals, genesis_date, official links (typed url list), token contracts, and a localized HTML description (falls back to English when the requested locale is missing). All price/supply fields are decimal strings.

get/api/v1/coins/{slug}

Query parameters

localestring nullable

Content language for the description (falls back to English).

Example:en

Content language for the description (falls back to English).

Response

Example response

{
  "data": {
    "id": 38,
    "slug": "bitcoin",
    "name": "Bitcoin",
    "symbol": "BTC",
    "type": "coin",
    "rank": 1,
    "price": "63520.780763913",
    "marketcap": 1264646594448.5,
    "fully_diluted_valuation": 1333936396042.2,
    "volume_24h": 5345161962,
    "change_24h": 1.35,
    "change_7d": 4.98,
    "change_rank_24h": 0,
    "change_rank_7d": 0,
    "supply": {
      "circulating": "19909179",
      "total": "19970852",
      "max": "21000000"
    },
    "today": {
      "open": "63408.100996475",
      "high": "63640.608639825",
      "low": "62798.732107749",
      "close": "63520.780763913"
    },
    "all_time_high": {
      "price": "125881.21309073",
      "date": "2025-10-06",
      "percent_from": -49.54
    },
    "all_time_low": {
      "price": "0.099",
      "date": "2010-10-12",
      "percent_from": 64162304.81
    },
    "counts": {
      "exchanges": 11,
      "pairs": 92,
      "tickers": 211,
      "wallets": 206
    },
    "decimals": 8,
    "genesis_date": "2009-01-03",
    "description": "<p>Bitcoin is a decentralized digital currency…</p>",
    "links": [
      {
        "type": "website",
        "url": "https://bitcoin.org/en/"
      },
      {
        "type": "whitepaper",
        "url": "https://bitcoin.org/bitcoin.pdf"
      }
    ],
    "contracts": [],
    "logo": "https://bitculator.com/storage/media/logo/bitcoin.png",
    "last_updated": "2026-06-27T10:34:17+00:00"
  }
}