/v1/next
Next upcoming cliff unlock for a token, plus the ones after it
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/tokenunlocks-api/v1/next" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tokenunlocks-api/v1/next", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tokenunlocks-api/v1/next");
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/next",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"name": "Arbitrum",
"note": "next_unlock is the next cliff that releases tokens; pct_of_total_supply is the dilution it adds. Recipients/categories show who receives them (insiders, privateSale, team, ecosystem…). Token amounts only — multiply by a price feed for the dollar value. Lightly cached.",
"token": "arbitrum:0x912ce59144191c1204e64559fe8253a0e49e6548",
"source": "DeFiLlama emissions dataset",
"protocol": "arbitrum",
"upcoming": [
{
"date": "2026-06-15",
"timestamp": 1781553861,
"categories": [
"insiders",
"privateSale"
],
"days_until": 3,
"recipients": [
"Team, Contributors & Advisors",
"Investors"
],
"allocations": [
{
"tokens": 56125000,
"category": "insiders",
"recipient": "Team, Contributors & Advisors",
"unlock_type": "cliff"
},
{
"tokens": 36520833.333333336,
"category": "privateSale",
"recipient": "Investors",
"unlock_type": "cliff"
}
],
"cliff_tokens": 92645833,
"linear_changes": [],
"pct_of_total_supply": 0.9265
},
{
"date": "2026-07-16",
"timestamp": 1784183604,
"categories": [
"insiders",
"privateSale"
],
"days_until": 34,
"recipients": [
"Team, Contributors & Advisors",
"Investors"
],
"allocations": [
{
"tokens": 56125000,
"category": "insiders",
"recipient": "Team, Contributors & Advisors",
"unlock_type": "cliff"
},
{
"tokens": 36520833.333333336,
"category": "privateSale",
"recipient": "Investors",
"unlock_type": "cliff"
}
],
"cliff_tokens": 92645833,
"linear_changes": [],
"pct_of_total_supply": 0.9265
},
{
"date": "2026-08-15",
"timestamp": 1786813347,
"categories": [
"insiders",
"privateSale"
],
"days_until": 64,
"recipients": [
"Team, Contributors & Advisors",
…