/v1/billable
Billable weight (greater of actual & dim)
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/dimweight-api/v1/billable" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dimweight-api/v1/billable", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dimweight-api/v1/billable");
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/billable",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Billable weight is the greater of actual and dimensional weight. Carriers usually round up to the next lb or 0.5 kg.",
"input": {
"unit": "in",
"width": 12,
"height": 12,
"length": 12,
"carrier": null,
"divisor": 139,
"weight_unit": "lb",
"actual_weight": 8
},
"charged_on": "dimensional",
"actual_weight_kg": 3.63,
"actual_weight_lb": 8,
"billable_weight_kg": 5.64,
"billable_weight_lb": 12.43,
"dimensional_weight_kg": 5.64,
"dimensional_weight_lb": 12.43
},
"meta": {
"timestamp": "2026-06-03T17:41:59.304Z",
"request_id": "31316f43-4f2c-41ab-85a8-a0abd0da915b"
},
"status": "ok",
"message": "Billable weight",
"success": true
}