/v1/meta
Spec
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dimweight-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dimweight-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/dimweight-api/v1/meta",
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": "Divisors and limits are typical published values — confirm with your carrier and service.",
"service": "dimweight",
"carriers": [
"ups",
"fedex",
"usps",
"dhl",
"iata",
"intl"
],
"defaults": {
"metric_divisor_cm3_per_kg": 5000,
"imperial_divisor_in3_per_lb": 139
},
"endpoints": {
"/v1/girth": "Girth, length+girth and oversize check against length limits.",
"/v1/billable": "Billable weight = greater of actual and dimensional weight.",
"/v1/dimweight": "Dimensional (volumetric) weight from L×W×H and a dim divisor or carrier."
},
"description": "Dimensional/volumetric weight and shipping-size maths: dim weight, billable weight and girth/oversize checks."
},
"meta": {
"timestamp": "2026-06-03T17:41:59.609Z",
"request_id": "61e96469-eb1f-4c4e-8274-2fa3f359d9ea"
},
"status": "ok",
"message": "Meta",
"success": true
}