GET /crypto/:coin_id
Get comprehensive details for a specific cryptocurrency by its CoinGecko ID or ticker symbol (e.g., 'bitcoin' or 'BTC'). Returns the coin's current price, market cap, trading volume, price changes, and metadata. Useful for building dedicated coin detail pages, comparing specific tokens, or fetching data for a user's favorite coins without downloading the entire top-250 list.
coin_id
required
CoinGecko ID or symbol (e.g. bitcoin, BTC)
| Name | Required | Default | Description |
|---|---|---|---|
coin_id |
Yes | - | CoinGecko ID or symbol (e.g. bitcoin, BTC) |
curl https://nordapi.ee/api/v1/crypto/bitcoin
curl https://nordapi.ee/api/v1/crypto/bitcoin
curl https://nordapi.ee/api/v1/crypto/ethereum
curl https://nordapi.ee/api/v1/crypto/SOL
{
"data": {
"change_24h_pct": 0.2925,
"change_7d_pct": 1.7643,
"circulating_supply": 20011868.0,
"id": "bitcoin",
"last_updated": "2026-04-05T20:30:00Z",
"market_cap_usd": 1349923449918.0,
"name": "Bitcoin",
"price_eur": 58528.41656784,
"price_usd": 67454.0,
"symbol": "BTC",
"total_supply": 20011868.0,
"volume_24h_usd": 18197482700.0
},
"success": true
}
{"success":true,"data":{"id":"bitcoin","symbol":"BTC","name":"Bitcoin","price_usd":70528.0}}