Skip to main content
GET
/
v3
/
currencies
/
{id}
/
vesting
/
allocations
Currency vesting allocations
curl --request GET \
  --url https://api.cryptorank.io/v3/currencies/{id}/vesting/allocations \
  --header 'X-Api-Key: <api-key>'
[
  {
    "allocationName": "Private Sale Investors",
    "totalAmount": "15000000",
    "percentOfSupply": 15,
    "unlockedAmount": "5000000",
    "unlockedPercent": 33.3333,
    "lockedAmount": "10000000",
    "lockedPercent": 66.6667,
    "groupDominance": 12.3456,
    "nextUnlockDate": 1715000000000,
    "nextUnlockTokenAmount": "125000",
    "nextUnlockUsdAmount": "8125000",
    "vestingType": "linear"
  }
]

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
integer
required

Numeric coin id.

Example:

1

Response

allocationName
string
required
Example:

"Private Sale Investors"

totalAmount
string
required

Total tokens allocated to this allocation.

Example:

"15000000"

percentOfSupply
object
required

Allocation size relative to total supply, in percent.

Example:

15

unlockedAmount
string
required

Tokens already unlocked.

Example:

"5000000"

unlockedPercent
number
required

unlockedAmount / totalAmount × 100.

Example:

33.3333

lockedAmount
string
required

Tokens still locked.

Example:

"10000000"

lockedPercent
number
required

lockedAmount / totalAmount × 100.

Example:

66.6667

groupDominance
number
required

Share of this allocation's lockedAmount across all locked tokens of the coin.

Example:

12.3456

nextUnlockDate
object
required

Closest upcoming unlock date for this allocation (Unix milliseconds).

Example:

1715000000000

nextUnlockTokenAmount
object
required
Example:

"125000"

nextUnlockUsdAmount
object
required

nextUnlockTokenAmount valued at the current USD price.

Example:

"8125000"

vestingType
enum<string>
required

Vesting schedule type.

Available options:
linear,
cliff,
mixed
Example:

"linear"