Skip to main content
GET
/
v3
/
currencies
/
search
Currency Search
curl --request GET \
  --url https://api.cryptorank.io/v3/currencies/search \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 1,
    "slug": "bitcoin",
    "symbol": "BTC",
    "name": "Bitcoin",
    "rank": 1,
    "imageUrl": "https://images.cryptorank.io/coins/150x150.bitcoin1524754012028.png"
  }
]
Does not return market data — use /currencies/list or /currencies/:id for that.
Results are ranked by relevance, so the first hit is usually the right one.

Authorizations

X-Api-Key
string
header
required

Query Parameters

query
string
required

Search string — matches name and symbol.

Response

id
number
required

Unique numeric identifier

Example:

1

slug
string
required

URL-friendly entity slug

Example:

"bitcoin"

symbol
string | null
required

Native token symbol (e.g. 'ETH', 'BNB')

Example:

"BTC"

name
string
required

Display name

Example:

"Bitcoin"

rank
number | null
required

CryptoRank rank

Example:

1

imageUrl
string | null
required

Logo image URL, 150x150

Example:

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