Vai al contenuto
GET /v1/outrigger-pad

Outrigger pad area from bearing

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/crane-api/v1/outrigger-pad" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/crane-api/v1/outrigger-pad", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/crane-api/v1/outrigger-pad");
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/outrigger-pad",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "The outrigger float spreads the leg load over the ground: required pad area = the outrigger load ÷ the soil's allowable bearing pressure, and a square pad needs that area's square root per side. A 30-tonne leg load on 200 kPa ground wants about 1.5 m² — roughly a 1.2 m square mat. Weak or made ground needs far bigger mats or cribbing; overloading the soil is a leading cause of crane overturns.",
        "inputs": {
            "allowable_bearing_kpa": 200,
            "outrigger_load_tonnes": 30
        },
        "square_pad_side_m": 1.213,
        "ground_pressure_kpa": 200,
        "required_pad_area_m2": 1.471
    },
    "meta": {
        "timestamp": "2026-06-07T08:17:57.532Z",
        "request_id": "3e450c19-33c0-438c-b089-73d139e6f9b7"
    },
    "status": "ok",
    "message": "Outrigger pad",
    "success": true
}