/v1/brood
Brood development dates
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/apiary-api/v1/brood" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apiary-api/v1/brood", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apiary-api/v1/brood");
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/brood",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "From the day the egg is laid: it hatches around day 3, the cell is capped around day 8–10, and the adult emerges on day 16 (queen), 21 (worker) or 24 (drone).",
"inputs": {
"caste": "worker",
"lay_date": "2026-05-01"
},
"hatch_date": "2026-05-04",
"capped_date": "2026-05-10",
"emergence_date": "2026-05-22",
"emergence_days": 21
},
"meta": {
"timestamp": "2026-06-06T07:14:10.675Z",
"request_id": "c3bd7dcb-8a58-434b-99b3-741c1f1823ab"
},
"status": "ok",
"message": "Brood cycle",
"success": true
}