Skip to main content
GET
/
v3
/
currencies
/
trending
Trending Currencies
curl --request GET \
  --url https://api.cryptorank.io/v3/currencies/trending \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 1,
    "rank": 1,
    "slug": "bitcoin",
    "symbol": "BTC",
    "name": "Bitcoin",
    "imageUrl": "https://images.cryptorank.io/coins/150x150.bitcoin.png",
    "category": {
      "id": 7,
      "slug": "smart-contracts",
      "name": "Smart Contracts"
    },
    "price": "65000.5",
    "pricePercentChange24h": 2.34,
    "high24h": "65500",
    "low24h": "64000",
    "volume24h": "32000000000",
    "marketCap": "1280000000000",
    "volMcapRatio": 0.025,
    "listingDate": "2009-01-03T00:00:00.000Z"
  }
]
Ranked by CryptoRank’s internal Trending Score; reflects the moment of the request and can change quickly.

Authorizations

X-Api-Key
string
header
required

Response

id
number
required
Example:

1

rank
number | null
required

CryptoRank rank.

Example:

1

slug
string
required
Example:

"bitcoin"

symbol
string | null
required
Example:

"BTC"

name
string
required
Example:

"Bitcoin"

imageUrl
string | null
required

Coin logo (150×150); null when no image is available.

Example:

"https://images.cryptorank.io/coins/150x150.bitcoin.png"

category
object
required

Coin category; null when the coin has none.

price
string | null
required

Price, USD; null when the coin is not actively traded.

Example:

"65000.5"

pricePercentChange24h
number | null
required

24h price change, percent; null when unavailable.

Example:

2.34

high24h
string | null
required

24h high price, USD.

Example:

"65500"

low24h
string | null
required

24h low price, USD.

Example:

"64000"

volume24h
string | null
required

24h trading volume, USD; null when the coin is not actively traded.

Example:

"32000000000"

marketCap
string | null
required

Market cap, USD.

Example:

"1280000000000"

volMcapRatio
number | null
required

Volume / market-cap ratio. Null when market cap is unavailable or zero.

Example:

0.025

listingDate
string | null
required

First exchange listing date.

Example:

"2009-01-03T00:00:00.000Z"