Skip to main content

Overview

Retrieve comprehensive information about a cryptocurrency exchange including description, volume statistics, number of markets, links, and confidence metrics.

Usage

coinpaprika-cli exchange <exchange_id> [OPTIONS]

Arguments

exchange_id
string
required
The unique identifier for the exchange (e.g., binance, coinbase, kraken)

Options

quotes
string
default:"USD"
Comma-separated list of quote currencies for volume data (e.g., USD,BTC,EUR)
output
string
default:"table"
Output format: table or json
raw
boolean
default:"false"
Output raw JSON without metadata wrapper (useful for scripting)

Examples

Get Binance exchange details

coinpaprika-cli exchange binance

Get Coinbase details with BTC volume

coinpaprika-cli exchange coinbase --quotes BTC

Get Kraken details as JSON

coinpaprika-cli exchange kraken --output json

Get exchange details in multiple currencies

coinpaprika-cli exchange binance --quotes USD,BTC,ETH

Response

The command returns detailed exchange information:
{
  "id": "binance",
  "name": "Binance",
  "description": "Binance is a global cryptocurrency exchange that provides a platform for trading more than 100 cryptocurrencies. Since early 2018, Binance is considered as the biggest cryptocurrency exchange in the world in terms of trading volume.",
  "active": true,
  "website_status": true,
  "api_status": true,
  "message": null,
  "links": {
    "website": ["https://www.binance.com"],
    "twitter": ["https://twitter.com/binance"],
    "blog": ["https://www.binance.com/en/blog"]
  },
  "markets_data_fetched": true,
  "adjusted_rank": 1,
  "reported_rank": 1,
  "currencies": 375,
  "markets": 1450,
  "fiats": [
    {"name": "US Dollar", "symbol": "USD"},
    {"name": "Euro", "symbol": "EUR"}
  ],
  "quotes": {
    "USD": {
      "reported_volume_24h": 25000000000,
      "adjusted_volume_24h": 24000000000,
      "reported_volume_7d": 175000000000,
      "adjusted_volume_7d": 168000000000,
      "reported_volume_30d": 750000000000,
      "adjusted_volume_30d": 720000000000
    }
  },
  "confidence_score": 0.95,
  "last_updated": "2024-01-02T15:30:00Z"
}

Response Fields

id
string
Unique exchange identifier
name
string
Display name of the exchange
description
string
Detailed description of the exchange
active
boolean
Whether the exchange is currently active
website_status
boolean
Whether the exchange website is operational
api_status
boolean
Whether the exchange API is operational
message
string
Any important messages or alerts about the exchange
Social media and website links for the exchange
markets_data_fetched
boolean
Whether market data is currently being collected
adjusted_rank
number
Exchange rank based on adjusted volume
reported_rank
number
Exchange rank based on self-reported volume
currencies
number
Number of different currencies traded
markets
number
Total number of trading pairs
fiats
array
List of supported fiat currencies
quotes
object
Volume statistics in requested currencies (24h, 7d, 30d)
confidence_score
number
CoinPaprika confidence score (0-1) based on data quality and reliability
last_updated
string
ISO 8601 timestamp of last data update

Notes

  • Confidence score helps assess exchange reliability
  • Adjusted volume is more reliable than reported volume (filters wash trading)
  • All fields may be null if data is unavailable
  • Available on free tier

Build docs developers (and LLMs) love