/v1/varroa
Varroa infestation %
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/apiary-api/v1/varroa" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apiary-api/v1/varroa", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apiary-api/v1/varroa");
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/apiary-api/v1/varroa",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Infestation % = mites ÷ bees sampled × 100. A half-cup scoop is ~300 bees. Most programs treat at ~3 mites per 100 bees (3%); act sooner before winter bees are reared.",
"inputs": {
"mite_count": 9,
"bees_sampled": 300
},
"threshold_percent": 3,
"mites_per_100_bees": 3,
"infestation_percent": 3,
"treatment_recommended": true,
"estimated_mites_per_1000": 30
},
"meta": {
"timestamp": "2026-06-06T07:14:10.824Z",
"request_id": "a758560f-0f81-436c-b976-2606427c57da"
},
"status": "ok",
"message": "Varroa wash",
"success": true
}