/v1/meta
Spec
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/apiary-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apiary-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apiary-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"notes": "Dates as YYYY-MM-DD. Sample ~300 bees for a wash. Caste emergence: queen 16 d, worker 21 d, drone 24 d. A planning aid — local conditions vary.",
"service": "apiary-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/brood": "Hatch, capping and emergence dates from the egg-lay date and caste.",
"GET /v1/stores": "Winter honey needed and frames from climate or a target, vs current stores.",
"GET /v1/varroa": "Infestation % and treatment threshold from a mite wash of a bee sample."
},
"description": "Beekeeping maths: varroa-mite infestation from a wash, brood development dates by caste, and winter honey stores."
},
"meta": {
"timestamp": "2026-06-06T07:14:10.922Z",
"request_id": "c34c7dbf-98d8-4d38-90b7-dc579f76654a"
},
"status": "ok",
"message": "Meta",
"success": true
}