
Nowlun Search Shipments
Pricing
$10.00/month + usage

Nowlun Search Shipments
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
Field | Type | Required | Description |
---|---|---|---|
origin_port | String | No | Origin port (e.g., "Sokhna-Port"). Use Nowlun Selectors actor to get valid ports. Required if origin_area is not provided. |
origin_area | String | No | Origin area (e.g., "Cairo"). Use Nowlun Selectors actor to get valid areas. Required if origin_port is not provided. |
destination_port | String | No | Destination port (e.g., "Jebel Ali"). Use Nowlun Selectors actor to get valid ports. Required if destination_area is not provided. |
destination_area | String | No | Destination area (e.g., "Dubai"). Use Nowlun Selectors actor to get valid areas. Required if destination_port is not provided. |
date | String | Yes | Departure date in DD/MM/YYYY format (e.g., "29/04/2025"). |
containers | String | Yes | JSON array of container types and quantities (e.g., ["40 Dry Standard:1"] ). Use Nowlun Selectors actor to get valid container types. |
email | String | Yes | Nowlun account email for authentication. |
password | String | Yes | Nowlun 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
Field | Type | Description |
---|---|---|
reference | String | Unique quote reference number (e.g., "Q.R.1531507"). |
cheapest_price | Number | Cheapest price for the shipment in USD. |
total_cost | Number | Total cost of the shipment. |
total_cost_currency | String | Currency of the total cost (e.g., "$"). |
transit_days | Number | Estimated transit time in days. |
etd | String | Estimated departure date (DD/MM/YYYY). |
eta | String | Estimated arrival date (DD/MM/YYYY). |
pol | String | Port of Loading. |
pod | String | Port of Discharge. |
pickup | Object | Pickup port details (port name and country). |
dropoff | Object | Dropoff port details (port name and country). |
price_type | String | Type of pricing (e.g., "Spot Price"). |
cost_breakdown | Array | Detailed 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"}]}]}]