Skip to main content
GET
/
v3
/
currencies
/
list
Currency List with Market Data
curl --request GET \
  --url https://api.cryptorank.io/v3/currencies/list \
  --header 'X-Api-Key: <api-key>'
{
  "data": [
    {
      "id": 1,
      "slug": "bitcoin",
      "symbol": "BTC",
      "name": "Bitcoin",
      "rank": 1,
      "imageUrl": "https://images.cryptorank.io/coins/150x150.bitcoin1524754012028.png",
      "price": "65000.5",
      "priceChangePercent24h": 2.34,
      "marketCap": "1280000000000",
      "volume24h": "32000000000",
      "circulatingSupply": "19700000"
    }
  ],
  "meta": {
    "page": 1,
    "pageSize": 25,
    "hasNextPage": true
  },
  "status": {
    "usedCredits": 1,
    "timestamp": 1780000000000
  }
}
Supports conversion via the convert parameter.
To resolve a name or ticker to an id, use /currencies/search instead of scanning pages.
Filter to one ecosystem’s projects with ecosystemId — get IDs from /ecosystems/list.

Authorizations

X-Api-Key
string
header
required

Query Parameters

page
number
default:1

Page number (1-based). Returns up to 100 items per page.

Required range: 1 <= x <= 1000
sortBy
enum<string>
default:id

Sort field.

Available options:
id,
rank,
price,
marketCap,
volume24h,
priceChangePercent24h
sortOrder
enum<string>
default:asc

Sort direction. For rank, asc puts top-1 first.

Available options:
asc,
desc
convert
string
default:USD

Fiat ISO code for monetary fields (e.g. USD, EUR, RUB, AED). See GET /v3/fiat/list for the full list.

ecosystemId
number

Filter to coins that are core projects of this ecosystem. Get IDs from GET /v3/ecosystems/list.

Example:

17

Response

data
object[]
required
meta
object
required
status
object
required