Skip to main content
GET
/
v3
/
currencies
/
{id}
/
vesting
/
schedule
Vesting Schedule Chart
curl --request GET \
  --url https://api.cryptorank.io/v3/currencies/{id}/vesting/schedule \
  --header 'X-Api-Key: <api-key>'
[
  {
    "name": "Private Sale Investors",
    "totalTokens": "15000000",
    "shareOfTotal": 34.9,
    "tgeUnlockPercent": 10,
    "type": "linear",
    "unlockedPercent": 33.33,
    "lockedPercent": 66.67,
    "lockedTokens": "10000000",
    "phases": [
      {
        "type": "linear",
        "startTime": 1715000000000,
        "endTime": 1746000000000,
        "unlockPercent": 72.6,
        "unlockTokens": "12500000",
        "frequency": "monthly",
        "periods": 12,
        "percentPerPeriod": 6.05
      }
    ]
  }
]
Untracked allocations are excluded. Amounts are in the project’s native token.

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
integer
required

Numeric coin id.

Example:

1

Query Parameters

sortBy
enum<string>
default:share

Sort field: round share of total supply or round name.

Available options:
share,
name
sortOrder
enum<string>
default:desc
Available options:
asc,
desc

Response

name
string
required

Round name.

Example:

"Private Sale Investors"

totalTokens
string
required

Total tokens in the round.

Example:

"15000000"

shareOfTotal
number | null
required

Round share relative to total supply, in percent.

Example:

34.9

tgeUnlockPercent
number
required

Percentage of the round unlocked at TGE.

Example:

10

type
enum<string>
required

Round vesting schedule type.

Available options:
linear,
nonlinear,
dynamic
Example:

"linear"

unlockedPercent
number
required

Currently unlocked share of the round, %.

Example:

33.33

lockedPercent
number
required

Currently locked share of the round, %.

Example:

66.67

lockedTokens
string
required

Currently locked token amount.

Example:

"10000000"

phases
object[]
required

Release phases in chronological order. The TGE unlock is reported via tgeUnlockPercent and is not a phase; a gap between the TGE date and the first phase startTime indicates a cliff.