Kuehne + Nagel LTL+
  1. Transit
Kuehne + Nagel LTL+
  • Overview
    • Introduction
    • Acceptable Use Policy
    • Getting Started
    • Full Integration API Workflow
    • Support & Feedback
  • Accessorials
    • Accessorial - Retrieve all accessorial charge codes
      GET
  • BillOfLading
    • BOL - Create a bill of lading PDF
      POST
  • Quoting
    • RateQuote - Submit a quote request
      POST
    • RateQuote - Submit a quote request for multiple points
      POST
  • Document Retrieval
    • GetImageList - Retrieve list of available shipment documents
      POST
    • GetImage - Retrieve shipping documents based on DocumentID
      POST
  • Invoice
    • Invoice - Retrieve a single invoice or pull an entire week of invoices
      POST
  • Shipment Tracking
    • HTML Tracking Link Generation
    • TrackingList - Get a list of shipment tracking information
      POST
    • TrackingDetails - Retrieve all the tracking details related to a shipment
      POST
  • Load Tendering
    • LoadTender - Tender a shipment
      POST
    • LoadTender - Tender a shipment
      POST
  • Transit
    • Transit - Receive transit time for a shipment lane.
      POST
  • Orders
    • Order
      POST
    • OrderDetails
      POST
  1. Transit

Transit - Receive transit time for a shipment lane.

POST
https://api.ltlp.kuehne-nagel.com/api/transit/transitbyclient
Transit
Last modified:2024-11-04 17:58:36
The TransitTime API endpoint provides estimated transit times between an origin and destination ZIP code, along with carrier-specific details.

Input Parameters:#

1.
Authentication:
UserName, ClientCode, and AuthenticationID confirm user access.
2.
Location Details:
OriginZip: ZIP code for the shipment's origin.
DestinationZip: ZIP code for the shipment's destination.

Output Structure:#

ErrorMessage: If an error occurs, details are provided here.
Detail:
Carriers: An array of carrier-specific transit information, where each entry includes:
CarrierName and CarrierCode: The name and unique code for the carrier.
ReleaseDate: The date the transit data was released.
Transit Details:
TransitDays: Estimated transit time in business days.
CalendarDays: Total time including weekends/holidays.
PickupDate and DeliveryDate: Estimated pickup and delivery dates.
Status: Any additional status information for the transit.
This endpoint allows users to assess transit times across carriers, aiding in selecting options that align with delivery schedules.

Request

Body Params application/json
Authentication
object 
required
UserName
string 
required
ClientCode
string 
required
AuthenticationID
string 
required
OriginZip
string 
required
DestinationZip
string 
required
Example
{
  "Authentication": {
    "UserName": "string",
    "ClientCode": "string",
    "AuthenticationID": "string"
  },
  "OriginZip": "string",
  "DestinationZip": "string"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.ltlp.kuehne-nagel.com/api/transit/transitbyclient' \
--header 'Content-Type: application/json' \
--data-raw '{
    "Authentication": {
        "UserName": "string",
        "ClientCode": "string",
        "AuthenticationID": "string"
    },
    "OriginZip": "string",
    "DestinationZip": "string"
}'

Responses

🟢200OK
application/json
Body
ErrorMessage
string  | null 
optional
Detail
object 
optional
Carriers
array [object {8}] 
optional
Example
{
  "ErrorMessage": "string",
  "Detail": {
    "Carriers": [
      {
        "CarrierName": "string",
        "CarrierCode": "string",
        "ReleaseDate": "string",
        "TransitDays": 0,
        "CalendarDays": 0,
        "PickupDate": "string",
        "DeliveryDate": "string",
        "Status": "string"
      }
    ]
  }
}
Previous
LoadTender - Tender a shipment
Next
Order
Built with