/v1/schedule
Full vesting picture: supply, allocation progress, remaining locked, upcoming events
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/tokenunlocks-api/v1/schedule" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tokenunlocks-api/v1/schedule", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tokenunlocks-api/v1/schedule");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/tokenunlocks-api/v1/schedule",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"name": "Aptos",
"note": "allocation_by_category.progress_pct shows how much of each allocation bucket is already unlocked. remaining_locked is the sum of future cliff tokens still to vest. upcoming_events lists the future unlocks (cap 50). Token amounts only. Lightly cached.",
"notes": [
"Staking rewards follow Aptos' declining inflation schedule: 7% at launch, decreasing 1.5% per year to a 3.25% floor. Emissions are modeled monthly with compounding and calibrated against actual on-chain supply."
],
"token": "coingecko:aptos",
"source": "DeFiLlama emissions dataset",
"gecko_id": "aptos",
"protocol": "aptos",
"max_supply": 2100000000,
"total_supply": 2100000000,
"upcoming_events": [
{
"date": "2026-07-12",
"timestamp": 1783871235,
"categories": [
"insiders",
"noncirculating",
"privateSale"
],
"days_until": 30,
"recipients": [
"Community",
"Core Contributors",
"Foundation",
"Investors"
],
"allocations": [
{
"tokens": 3210144.664725,
"category": "noncirculating",
"recipient": "Community",
"unlock_type": "cliff"
},
{
"tokens": 3958333.3333333335,
"category": "insiders",
"recipient": "Core Contributors",
"unlock_type": "cliff"
},
{
"tokens": 1333333.3333333333,
"category": "noncirculating",
"recipient": "Foundation",
"unlock_type": "cliff"
},
{
"tokens": 2807971.6715208334,
"category": "privateSale",
"recipient": "Investors",
"unlock_type": "cliff"
}
],
"cliff_tokens": 11309783,
"linear_changes": [],
"pct_of_total_supply": 0.5386
},
{
"date": "2026-08-12",
"timestamp": 1786500978,
"categories": [
"insiders",
"noncirculating",
"privateSale"
],
"days_until": 61,
"recipients": [
"Community",
"Core Contributors",
"Foundation",
"Investors"
],
"allocations": [
{
…