Skip to main content
GET
/
v3
/
ecosystems
/
{id}
/
projects
Ecosystem projects
curl --request GET \
  --url https://api.cryptorank.io/v3/ecosystems/{id}/projects \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 1,
    "key": "bitcoin",
    "name": "Bitcoin",
    "logo": "https://example.com/coins/60x60.bitcoin.png",
    "shortDescription": "Peer-to-peer digital currency launched in 2009.",
    "categories": [
      {
        "id": 17,
        "name": "DeFi"
      }
    ],
    "price": "63250.123456789012",
    "marketCap": "1240000000000",
    "change24h": 1.2345
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cryptorank.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
number
required

Query Parameters

offset
number
default:0
Required range: 0 <= x <= 50000
limit
number
default:100
Required range: 1 <= x <= 1000
category
number

Ecosystem category ID — restrict the list to projects within this in-ecosystem category. Get available IDs from GET /v3/ecosystems/{id} (categories[].id).

Example:

17

sortBy
enum<string>
default:marketCap

Sort key:

  • marketCap — by price × availableSupply (USD)
  • volume24h — by 24-hour USD trading volume
  • newest — by coin ID (higher ID = added later)
Available options:
marketCap,
volume24h,
newest
sortOrder
enum<string>
default:desc
Available options:
asc,
desc

Response

200 - application/json
id
number
required

Coin ID.

Example:

1

key
string
required

Coin URL key (slug).

Example:

"bitcoin"

name
string
required
Example:

"Bitcoin"

logo
string | null
required

Coin logo URL (60×60). Null when no logo is available.

Example:

"https://example.com/coins/60x60.bitcoin.png"

shortDescription
string | null
required

English short description. Null when not available.

Example:

"Peer-to-peer digital currency launched in 2009."

categories
object[]
required

In-ecosystem categories the project belongs to.

price
string | null
required

Current USD price. Null when the project has no traded token.

Example:

"63250.123456789012"

marketCap
string | null
required

Market cap, USD (price × availableSupply). Null when not computable.

Example:

"1240000000000"

change24h
number | null
required

24-hour USD price change, percent. Null when no 24h baseline is available.

Example:

1.2345