Aller au contenu
GET /v1/protocols

List every token with a tracked unlock schedule

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/tokenunlocks-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}