Skip to main content

Overview

Returns a list of all coins available on CoinPaprika with basic information including ID, name, symbol, rank, and status.

Usage

coinpaprika-cli coins [OPTIONS]

Parameters

--limit
number
default:"100"
Maximum number of results to return
--output
string
default:"table"
Output format: table or json
--raw
boolean
default:"false"
Show raw JSON response without wrapper metadata

Examples

List first 10 coins

coinpaprika-cli coins --limit 10

List coins in JSON format

coinpaprika-cli coins --output json

List first 50 coins with raw JSON

coinpaprika-cli coins --limit 50 --output json --raw

Example Output

Table Format

┌──────┬───────────────┬────────────────────┬────────┬────────┬────────┬──────┐
│ Rank │ ID            │ Name               │ Symbol │ Active │ New    │ Type │
├──────┼───────────────┼────────────────────┼────────┼────────┼────────┼──────┤
│ 1    │ btc-bitcoin   │ Bitcoin            │ BTC    │ ✓      │        │ coin │
│ 2    │ eth-ethereum  │ Ethereum           │ ETH    │ ✓      │        │ coin │
│ 3    │ usdt-tether   │ Tether             │ USDT   │ ✓      │        │ token│
│ 4    │ bnb-binance   │ Binance Coin       │ BNB    │ ✓      │        │ coin │
│ 5    │ sol-solana    │ Solana             │ SOL    │ ✓      │        │ coin │
└──────┴───────────────┴────────────────────┴────────┴────────┴────────┴──────┘

JSON Format

[
  {
    "id": "btc-bitcoin",
    "name": "Bitcoin",
    "symbol": "BTC",
    "rank": 1,
    "is_new": false,
    "is_active": true,
    "type": "coin"
  },
  {
    "id": "eth-ethereum",
    "name": "Ethereum",
    "symbol": "ETH",
    "rank": 2,
    "is_new": false,
    "is_active": true,
    "type": "coin"
  }
]

Response Fields

FieldTypeDescription
idstringUnique coin identifier (e.g., btc-bitcoin)
namestringCoin name
symbolstringCoin symbol/ticker
rankintegerMarket cap rank
is_newbooleanWhether the coin is newly listed
is_activebooleanWhether the coin is currently active
typestringType of asset (coin or token)

API Endpoint

GET https://api.coinpaprika.com/v1/coins

Build docs developers (and LLMs) love