---
title: "Get coin detail"
method: GET
path: "/api/v1/coins/{slug}"
tags: ["Coins"]
---

# Get coin detail

`GET /api/v1/coins/{slug}`

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.

## Query parameters

- `locale` string, nullable — Content language for the description (falls back to English).

## Response `200`

- object
  - `data` object
    - `id` integer
    - `slug` string
    - `name` string
    - `symbol` string
    - `type` string
    - `rank` integer
    - `price` string
    - `marketcap` number
    - `fully_diluted_valuation` number
    - `volume_24h` integer
    - `change_24h` number
    - `change_7d` number
    - `change_rank_24h` integer
    - `change_rank_7d` integer
    - `supply` object
      - `circulating` string
      - `total` string
      - `max` string
    - `today` object
      - `open` string
      - `high` string
      - `low` string
      - `close` string
    - `all_time_high` object
      - `price` string
      - `date` string
      - `percent_from` number
    - `all_time_low` object
      - `price` string
      - `date` string
      - `percent_from` number
    - `counts` object
      - `exchanges` integer
      - `pairs` integer
      - `tickers` integer
      - `wallets` integer
    - `decimals` integer
    - `genesis_date` string
    - `description` string
    - `links` object[]
      - `type` string
      - `url` string
    - `contracts` unknown[]
      - unknown
    - `logo` string
    - `last_updated` string

## Other responses

- `404`

---

[API](https://skmtc.net/bitculator/apis/bitculator-data-api.md) · [All operations](https://skmtc.net/bitculator/apis/bitculator-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bitculator/bitculator-data-api/revisions/ed1378af68b6/schema)
