Zum Inhalt springen
GET /v1/schedule

Full vesting picture: supply, allocation progress, remaining locked, upcoming events

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/tokenunlocks-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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": [
                    {
   
…