/v1/capacity
Tipping-limited safe load
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/crane-api/v1/capacity" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/crane-api/v1/capacity", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/crane-api/v1/capacity");
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/capacity",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "A simplified tipping balance about the fulcrum (the tipping line): the load that just tips the crane = counterweight × its radius ÷ the load radius, and the rated safe load is a stability fraction of that — about 75 % for mobile cranes on outriggers, 66 % on crawlers/tyres per the standards. This ignores the boom and superstructure weight (the real chart accounts for them), so treat it as a teaching/sanity figure, never a substitute for the load chart.",
"inputs": {
"load_radius_m": 8,
"stability_factor": 0.75,
"counterweight_tonnes": 20,
"counterweight_radius_m": 3
},
"safe_load_tonnes": 5.63,
"tipping_load_tonnes": 7.5
},
"meta": {
"timestamp": "2026-06-07T08:17:57.342Z",
"request_id": "05a0ef3e-f0b8-4de3-87bd-2cbb501d9d9e"
},
"status": "ok",
"message": "Capacity",
"success": true
}