Skip to main content

Overview

Returns a list of cryptocurrency exchanges where a specific coin is available for trading, including volume share data and supported fiat currencies.

Usage

coinpaprika-cli coin-exchanges <COIN_ID> [OPTIONS]

Parameters

coin_id
string
required
Coin ID in format symbol-name (e.g., btc-bitcoin)
--limit
number
default:"50"
Maximum number of exchanges to return
--output
string
default:"table"
Output format: table or json
--raw
boolean
default:"false"
Show raw JSON response without wrapper metadata

Examples

Get exchanges trading Bitcoin

coinpaprika-cli coin-exchanges btc-bitcoin

Get top 10 exchanges for Ethereum

coinpaprika-cli coin-exchanges eth-ethereum --limit 10

Get exchanges in JSON format

coinpaprika-cli coin-exchanges sol-solana --output json

Example Output

Table Format

┌────────────────────┬──────────────────────────┬─────────────────┬──────────────┐
│ ID                 │ Name                     │ Volume Share    │ Fiat Support │
├────────────────────┼──────────────────────────┼─────────────────┼──────────────┤
│ binance            │ Binance                  │ 23.45%          │ USD, EUR     │
│ coinbase-exchange  │ Coinbase Exchange        │ 18.32%          │ USD, EUR, GBP│
│ kraken             │ Kraken                   │ 12.87%          │ USD, EUR     │
│ okex               │ OKX                      │ 10.23%          │ USD          │
│ huobi              │ Huobi Global             │ 8.45%           │ USD, EUR     │
└────────────────────┴──────────────────────────┴─────────────────┴──────────────┘

JSON Format

[
  {
    "id": "binance",
    "name": "Binance",
    "adjusted_volume_24h_share": 23.45,
    "fiats": [
      {
        "name": "US Dollar",
        "symbol": "USD"
      },
      {
        "name": "Euro",
        "symbol": "EUR"
      }
    ]
  },
  {
    "id": "coinbase-exchange",
    "name": "Coinbase Exchange",
    "adjusted_volume_24h_share": 18.32,
    "fiats": [
      {
        "name": "US Dollar",
        "symbol": "USD"
      },
      {
        "name": "Euro",
        "symbol": "EUR"
      },
      {
        "name": "British Pound",
        "symbol": "GBP"
      }
    ]
  }
]

Response Fields

FieldTypeDescription
idstringUnique exchange identifier
namestringExchange name
adjusted_volume_24h_sharenumberExchange’s share of total 24h volume (percentage)
fiatsarraySupported fiat currencies
fiats[].namestringFiat currency name
fiats[].symbolstringFiat currency symbol

API Endpoint

GET https://api.coinpaprika.com/v1/coins/{coin_id}/exchanges

Build docs developers (and LLMs) love