Zum Inhalt springen
GET /v1/meta

Spec

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/freight-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}