/v1/protocol
One protocol notional & premium volume
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/optionsdex-api/v1/protocol" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/optionsdex-api/v1/protocol", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/optionsdex-api/v1/protocol");
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/optionsdex-api/v1/protocol",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"name": "Derive",
"slug": "derive",
"chains": [
"OP Mainnet",
"Arbitrum",
"Derive Chain"
],
"source": "DeFiLlama",
"category": null,
"premium_volume": {
"d7": 16543591,
"d30": 45063388,
"h24": 600187,
"all_time": 466967213
},
"notional_volume": {
"d7": 292762642,
"d30": 1212451371,
"h24": 20131794,
"all_time": 17452429305
}
},
"meta": {
"timestamp": "2026-06-11T16:46:42.698Z",
"request_id": "53fcb3f6-bdcf-432f-aeb1-e5cb61aad019"
},
"status": "ok",
"message": "Protocol retrieved successfully",
"success": true
}