/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/crane-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/crane-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/crane-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/crane-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"notes": "Metric (t, m, kN·m, kPa, m²). moment = load·radius; tipping load = CW·CW-radius/load-radius, safe = ×stability (~0.75 outriggers); pad area = load·g ÷ bearing. Simplified — always use the manufacturer load chart. For sling/WLL loads use a rigging API.",
"service": "crane-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/capacity": "Tipping-limited safe load from the counterweight balance.",
"GET /v1/load-moment": "Load moment from load and working radius.",
"GET /v1/outrigger-pad": "Outrigger pad area from the ground-bearing pressure."
},
"description": "Mobile-crane lift maths: load moment, tipping-limited safe capacity, and outrigger pad size."
},
"meta": {
"timestamp": "2026-06-07T08:17:57.607Z",
"request_id": "68f4ee05-6706-473f-a750-7880a1da2611"
},
"status": "ok",
"message": "Meta",
"success": true
}