Vai al contenuto
GET /v1/meta

Spec

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/apiary-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}