Marketplace
No threads yet
Live

get_shipping_route_details

maersk.com

Returns one shipping route from https://maersk.com by its full route slug, including the ordered port sequence, leg and cumulative transit times, arrival and departure days, location IDs, and source URLs.

Parameters1
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_shipping_route_details?

Returns one shipping route from https://maersk.com by its full route slug, including the ordered port sequence, leg and cumulative transit times, arrival and departure days, location IDs, and source URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass route_slug and get the result back without maintaining a scraper.

Response

{
  "url": "<string>",
  "legs": [
    {
      "to_port": "<string>",
      "sequence": 0,
      "from_port": "<string>",
      "transit_time": "<string>"
    }
  ],
  "name": "<string>",
  "slug": "<string>",
  "end_port": "<string>",
  "short_slug": "<string>",
  "start_port": "<string>",
  "port_sequence": [
    {
      "arrives": "<string>",
      "departs": "<string>",
      "port_url": "<string>",
      "sequence": 0,
      "port_name": "<string>",
      "location_id": "<string>",
      "region_slug": "<string>",
      "country_slug": "<string>",
      "transit_time": "<string>"
    }
  ],
  "route_collection": "<string>",
  "route_collection_slug": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/8039fcd6-2b2d-4e66-bdc8-38f01ac3fde4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "8039fcd6-2b2d-4e66-bdc8-38f01ac3fde4",
    "variables": {
        "route_slug": "europe-feeder-shipping-routes/44o"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="8039fcd6-2b2d-4e66-bdc8-38f01ac3fde4") — the "get_shipping_route_details" function, which returns one shipping route from https://maersk.com by its full route slug, including the ordered port sequence, leg and cumulative transit times, arrival and departure days, location IDs, and source URLs..

It takes route_slug (str). Return the result as structured JSON.