Skip to content
GET /v1/varroa

Varroa infestation %

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/apiary-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}