Vai al contenuto
GET /v1/meta

Spec

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "notes": "Imperial units: inches, pounds, cubic feet (the NMFC class scale is US-based). Pallet defaults to a 48×40 GMA pallet; container to a 40 ft high-cube. For single-parcel courier billing weight use a dimensional-weight API.",
        "service": "freight-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/pallet": "Cartons per pallet by cube and by weight, with layers and stack height.",
            "GET /v1/container": "Units per container/trailer by stacking and by payload, with cube utilisation.",
            "GET /v1/freight-class": "NMFC LTL freight class from weight and dimensions (or cubic feet)."
        },
        "description": "Freight & logistics maths: LTL freight class from density (NMFC scale), palletization and container/trailer loading."
    },
    "meta": {
        "timestamp": "2026-06-05T21:48:47.652Z",
        "request_id": "8e80e95c-99a9-49ae-a618-8ea7b0eeec09"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}