Nowlun Search Shipments avatar
Nowlun Search Shipments

Pricing

$10.00/month + usage

Go to Store
Nowlun Search Shipments

Nowlun Search Shipments

Developed by

Maged

Maged

Maintained by Community

The Nowlun Search Shipments actor retrieves shipping rate quotes from the Nowlun platform based on origin and destination ports or areas, departure date, and container types. It provides detailed pricing information, including total cost, transit time, and cost breakdown.

5.0 (1)

Pricing

$10.00/month + usage

0

Total users

2

Monthly users

2

Runs succeeded

56%

Last modified

7 days ago

Nowlun Search Shipments Actor

Description

The Nowlun Search Shipments actor retrieves shipping rate quotes from the Nowlun platform (https://nowlun.com) based on origin and destination ports or areas, departure date, and container types. It provides detailed pricing information, including total cost, transit time, and cost breakdown. Clients can specify either ports, areas, or a mix (e.g., origin port with destination area). Authentication is optional, and the actor returns an "Unauthorized" message if credentials are not provided.

Features

  • Fetches shipping quotes for specified port or area pairs and container types.
  • Includes detailed cost breakdowns and transit times.
  • Provides estimated departure and arrival dates.
  • Supports flexible origin and destination inputs (ports, areas, or mixed).
  • Supports optional authentication for enhanced access.

Input Schema

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

FieldTypeRequiredDescription
origin_portStringNoOrigin port (e.g., "Sokhna-Port"). Use Nowlun Selectors actor to get valid ports. Required if origin_area is not provided.
origin_areaStringNoOrigin area (e.g., "Cairo"). Use Nowlun Selectors actor to get valid areas. Required if origin_port is not provided.
destination_portStringNoDestination port (e.g., "Jebel Ali"). Use Nowlun Selectors actor to get valid ports. Required if destination_area is not provided.
destination_areaStringNoDestination area (e.g., "Dubai"). Use Nowlun Selectors actor to get valid areas. Required if destination_port is not provided.
dateStringYesDeparture date in DD/MM/YYYY format (e.g., "29/04/2025").
containersStringYesJSON array of container types and quantities (e.g., ["40 Dry Standard:1"]). Use Nowlun Selectors actor to get valid container types.
emailStringYesNowlun account email for authentication.
passwordStringYesNowlun account password. If omitted, returns "Unauthorized" message.

Example Input:

{
"origin_port": "Sokhna-Port",
"destination_area": "Dubai",
"date": "29/04/2025",
"containers": "[\"40 Dry Standard:1\"]",
"email": "user@example.com",
"password": "yourpassword"
}

Mixed Input Example:

{
"origin_area": "Cairo",
"destination_port": "Jebel Ali",
"date": "29/04/2025",
"containers": "[\"40 Dry Standard:1\"]",
"email": "user@example.com",
"password": "yourpassword"
}

Output Schema

FieldTypeDescription
referenceStringUnique quote reference number (e.g., "Q.R.1531507").
cheapest_priceNumberCheapest price for the shipment in USD.
total_costNumberTotal cost of the shipment.
total_cost_currencyStringCurrency of the total cost (e.g., "$").
transit_daysNumberEstimated transit time in days.
etdStringEstimated departure date (DD/MM/YYYY).
etaStringEstimated arrival date (DD/MM/YYYY).
polStringPort of Loading.
podStringPort of Discharge.
pickupObjectPickup port details (port name and country).
dropoffObjectDropoff port details (port name and country).
price_typeStringType of pricing (e.g., "Spot Price").
cost_breakdownArrayDetailed breakdown of costs, including main and secondary items.

Example Output:

[
{
"reference": "Q.R.1531507",
"cheapest_price": 1710,
"total_cost": 2115,
"total_cost_currency": "$",
"transit_days": 14,
"etd": "07/06/2025",
"eta": "21/06/2025",
"pol": "Sokhna-Port",
"pod": "Jebel Ali",
"pickup": {
"port": "Sokhna-Port",
"country": "Egypt"
},
"dropoff": {
"port": "Jebel Ali",
"country": "United Arab Emirates"
},
"price_type": "Spot Price",
"cost_breakdown": [
{
"main_item": {
"name": "",
"price": 501,
"price_text": "$ 501"
},
"secondary_items": [
{
"name": "40 Dry Standard x 1",
"price_text": "$ 501"
}
]
}
]
}
]