/v1/protocols
List every token with a tracked unlock schedule
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/tokenunlocks-api/v1/protocols" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tokenunlocks-api/v1/protocols", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tokenunlocks-api/v1/protocols");
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/protocols",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Every token DeFiLlama tracks a vesting/emission schedule for. Use a slug from this list as the protocol parameter for /v1/next and /v1/schedule. Filter with q. Lightly cached.",
"limit": 100,
"total": 332,
"offset": 0,
"source": "DeFiLlama emissions dataset",
"matched": 3,
"protocols": [
"arbitrum",
"arbitrum-exchange",
"gearbox"
]
},
"meta": {
"timestamp": "2026-06-12T10:34:30.064Z",
"request_id": "175a864e-113a-4482-a5a9-d87d5b1c658c"
},
"status": "ok",
"message": "Unlock-tracked protocols retrieved successfully",
"success": true
}