Kuehne + Nagel LTL+
  1. Transit
Kuehne + Nagel LTL+
  • Overview
    • Introduction
    • Acceptable Use Policy
    • Support & Feedback
  • API
    • Overview
    • Full Integration API Workflow
    • Accessorials
      • Accessorial - Retrieve all accessorial charge codes
    • BillOfLading
      • BOL - Create a bill of lading PDF
    • Quoting
      • RateQuote - Submit a quote request
      • RateQuote - Submit a quote request for multiple points
    • Document Retrieval
      • GetImageList - Retrieve list of available shipment documents
      • GetImage - Retrieve shipping documents based on DocumentID
    • Invoice
      • Invoice - Retrieve a single invoice or pull an entire week of invoices
    • Shipment Tracking
      • HTML Tracking Link Generation
      • TrackingList - Get a list of shipment tracking information
      • TrackingDetails - Retrieve all the tracking details related to a shipment
    • Load Tendering
      • LoadTender - Tender a shipment
      • LoadTender - Tender a shipment
    • Transit
      • Transit - Receive transit time for a shipment lane.
        POST
    • Orders
      • Order
      • OrderDetails
  • EDI
    • Overview
    • 210 - Freight Details and Invoice
    • 214 - Transportation Carrier Shipment Status Message
    • Segments
      • 210/214 - 0100 Location Loop (N1 Loop)
      • 210 - 0400 Detail Loop (LX Loop)
      • 214 - 0205 Shipment Status Details (AT7 Loop)
  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