Nowlun Track Shipment avatar
Nowlun Track Shipment

Pricing

$10.00/month + usage

Go to Store
Nowlun Track Shipment

Nowlun Track Shipment

Developed by

Maged

Maged

Maintained by Community

The Nowlun Track actor enables clients to track shipments on the Nowlun platform (https://nowlun.com). It retrieves detailed shipment information, including booking number, shipping line, cargo, ports, and tracking updates, using a booking number or bill of lading (B/L)

5.0 (1)

Pricing

$10.00/month + usage

0

Total users

2

Monthly users

2

Runs succeeded

>99%

Last modified

7 days ago

Nowlun Track Actor

Description

The Nowlun Track actor enables clients to track shipments on the Nowlun platform (https://nowlun.com). It retrieves detailed shipment information, including booking number, shipping line, cargo, ports, and tracking updates, using a booking number or bill of lading (B/L). Authentication is optional, and the actor returns an "Unauthorized" message if credentials are not provided.

Features

  • Tracks shipments by booking number or B/L.
  • Automatically detects the shipping line if not specified.
  • Provides comprehensive shipment details, including port information and tracking updates.
  • Supports optional authentication for enhanced access.

Input Schema

find selectors here: "https://apify.com/maged120/nowlun-selectors" with search query functionality

FieldTypeRequiredDescription
booking_numberStringYesThe shipment booking number or B/L (e.g., "HLCUALY240509398").
selectorStringYesEither "booking" or "bl" to specify the tracking type.
shipping_lineStringNoThe shipping line (e.g., "Hapag-Lloyd"). Auto-detected if not provided. Use Nowlun Selectors actor to get valid shipping lines.
emailStringYesNowlun account email for authentication.
passwordStringYesNowlun account password. If omitted, returns "Unauthorized" message.

Example Input:

{
"booking_number": "HLCUALY240509398",
"selector": "booking",
"shipping_line": "Hapag-Lloyd",
"email": "user@example.com",
"password": "yourpassword"
}

Shipping Lines can also be found in the nowlun selectors actor with search functionality

[
"ADMIRAL",
"ARKAS",
"Aladin Express",
"BMC",
"CMA",
"COSCO",
"CULINES",
"Cordelia",
"ECON",
"ESL",
"EVERGREEN",
"FESCO",
"HMM",
"Hapag-Lloyd",
"KMTC",
"MAERSK",
"MARFRET",
"MARINA",
"MEDKON",
"MSC",
"Messina",
"ONE",
"OOCL",
"OVP Shipping",
"PIL",
"RCL",
"SEA LEGEND LINE",
"Safe trans",
"SeaLead",
"Sidraline",
"TARROS",
"TRANSMAR",
"TS LINES",
"TURKON",
"Unifeeder",
"Volta",
"WAN HAI",
"WEC",
"YANG MING",
"ZIM"
]

Output Schema

FieldTypeDescription
booking_numberStringThe shipment booking number.
shipping_lineStringThe shipping line handling the shipment.
stateStringCurrent state of the shipment (e.g., "pending").
blStringBill of lading number, if applicable.
companyStringCompany associated with the shipment, if available.
cargoStringDescription of the cargo (e.g., "20"ST x 1").
vesselStringVessel name, if available.
polObjectPort of Loading details (port name and date).
podObjectPort of Discharge details (port name and date).
pickupObjectPickup port details (port name and date).
dropoffObjectDropoff port details (port name and date).
transitsArrayList of transit points, if any.
updatesArrayList of tracking updates with timestamps and statuses.

Example Output:

[
{
"booking_number": "HLCUALY240509398",
"shipping_line": "Hapag-Lloyd",
"state": "pending",
"bl": "",
"company": "",
"cargo": "20\"ST x 1",
"vessel": "",
"pol": {
"port": "Port Said East-Port, Egypt",
"date": ""
},
"pod": {
"port": "",
"date": ""
},
"pickup": {
"port": "",
"date": ""
},
"dropoff": {
"port": "",
"date": ""
},
"transits": [],
"updates": []
}
]