Skip to main content
GET
/
v3
/
currencies
/
{id}
/
vesting
/
chart
Currency vesting emission chart
curl --request GET \
  --url https://api.cryptorank.io/v3/currencies/{id}/vesting/chart \
  --header 'X-Api-Key: <api-key>'
[
  {
    "date": 1715000000000,
    "unlocked": "250000",
    "byAllocation": [
      {
        "allocationName": "Private Sale Investors",
        "unlocked": "125000"
      }
    ]
  }
]

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

Query Parameters

interval
enum<string>
default:1m

Aggregation bucket — daily, weekly or monthly. Availability depends on tariff plan; if the requested value is finer than the plan allows, the request is rejected with 400.

Available options:
1d,
1w,
1m
from
string

Range start, inclusive (ISO 8601 or Unix timestamp). Filters chart points by date. Default — TGE date.

Example:

"2025-01-01"

to
string

Range end, inclusive (ISO 8601 or Unix timestamp). Filters chart points by date. Default — last scheduled unlock date.

Example:

"2030-01-01"

Response

date
number
required

Bucket start date — Unix milliseconds.

Example:

1715000000000

unlocked
string
required

Total tokens unlocked during the bucket across all allocations.

Example:

"250000"

byAllocation
object[]
required