Naar de inhoud
GET /v1/girth

Girth & oversize check

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/dimweight-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "Girth = 2 × (width + height) of the two smaller sides. Default limits are typical US ground values (UPS/FedEx).",
        "girth": 80,
        "input": {
            "unit": "in",
            "width": 20,
            "height": 20,
            "length": 40
        },
        "limits": {
            "unit": "in",
            "max_length": 108,
            "max_length_girth": 165
        },
        "oversize": false,
        "longest_side": 40,
        "oversize_reasons": [],
        "length_plus_girth": 120
    },
    "meta": {
        "timestamp": "2026-06-03T17:41:59.510Z",
        "request_id": "f78f7c9e-fc59-4259-aa6a-4920cc67c6d3"
    },
    "status": "ok",
    "message": "Girth & oversize",
    "success": true
}