/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/jam-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/jam-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/jam-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/jam-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"notes": "Grams, metres, °C, % Brix. sugar = fruit·ratio; boil = 100 − alt/285; set = boil + 4.5; yield = solids/(brix/100). Gel chemistry, not canning safety — for processing-time altitude adjustment use a canning API.",
"service": "jam-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/sugar": "Sugar weight and batch total from a sugar-to-fruit ratio.",
"GET /v1/yield": "Finished jam weight and water to evaporate at a target Brix.",
"GET /v1/setting-point": "Water boiling point and jam gel point for an altitude."
},
"description": "Jam / preserve maths: sugar from a sugar-to-fruit ratio, altitude-adjusted setting point, and finished yield at a target Brix."
},
"meta": {
"timestamp": "2026-06-07T08:17:52.100Z",
"request_id": "f6b1156d-4e2e-44ef-98b6-5236e038fa12"
},
"status": "ok",
"message": "Meta",
"success": true
}