Nowlun Selectors avatar
Nowlun Selectors

Pricing

$1.00/month + usage

Go to Store
Nowlun Selectors

Nowlun Selectors

Developed by

Maged

Maged

Maintained by Community

The Nowlun Selectors actor retrieves configuration options from the Nowlun platform (https://nowlun.com), including available ports, container types, shipping lines, and bulk commodities. These options are essential for configuring inputs for the Nowlun Track and Nowlun Search Shipments actors.

5.0 (1)

Pricing

$1.00/month + usage

0

Total users

1

Monthly users

1

Runs succeeded

>99%

Last modified

8 days ago

Nowlun Selectors Actor

Description

The Nowlun Selectors actor retrieves configuration options from the Nowlun platform (https://nowlun.com), including available ports, container types, shipping lines, and bulk commodities. These options are essential for configuring inputs for the Nowlun Track and Nowlun Search Shipments actors. Clients can filter results using a case-insensitive query string, and the locations list is limited to 50 entries per request.

Features

  • Provides lists of valid ports, container types, shipping lines, and bulk commodities.
  • Enables accurate input configuration for Nowlun Track and Nowlun Search Shipments actors.
  • Supports case-insensitive query filtering for all result types (locations, containers, shipping lines, bulk commodities).
  • Limits locations to 50 entries per request for optimized performance.
  • Supports optional authentication for enhanced access.

Input Schema

| Field | Type | Required | Description | |-----------|--------|----------|-----------------------------------------------------------------------------|
| query | String | No | Query to filter results (e.g., "Busan" or "Dry"). Case-insensitive. Filters locations (by name, country), containers, shipping lines, or bulk commodities. |

Example Input:

{
"query": "Busan"
}

Output Schema

FieldTypeDescription
locationsArrayList of up to 50 available ports with details (e.g., name, country, code). Filtered by query if provided.
containersArrayList of available container types (e.g., "40 Dry Standard"). Filtered by query if provided.
shipping_linesArrayList of supported shipping lines (e.g., "Hapag-Lloyd"). Filtered by query if provided.
bulk_commoditiesArrayList of bulk commodity types (e.g., "ALUMINA"). Filtered by query if provided.

Example Output:

[
{
"locations": [
{
"display_name": "Busan",
"display_country": "Korea, South",
"value": "Busan",
"country": "Korea, South",
"code": "PRK",
"iso": "KP",
"port": true
}
],
"containers": [
"20 Dry Standard",
"40 Dry Standard",
"40 Dry High Cube",
"40 Reefer High Cube"
],
"shipping_lines": [
"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"
],
"companies": null,
"user_company": null,
"bulk_commodities": [
"ALUMINA",
"Bauxite",
"CALCIUM CARBONATE",
"CAST IRON",
"CEMENT [Bgd in 50kg bgs]",
"CEMENT [Bgd in Jmbo bgs]",
"CEMENT [Bulk - Loose]",
"CHEMICAL PRODUCTS",
]
}
]