Μετάβαση στο περιεχόμενο
GET /v1/meta

Spec

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/freight-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}