Marketplace
No threads yet
Live

list_country_shipping_routes

maersk.com

Returns all shipping routes for a country from https://maersk.com with ordered port calls, per-leg and cumulative transit times, arrival and departure days, location IDs, and source URLs.

Parameters2
Runs8
Updated3d ago
Degraded8 runs · 75% 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 list_country_shipping_routes?

Returns all shipping routes for a country from https://maersk.com with ordered port calls, per-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 region, country and get the result back without maintaining a scraper.

Response

{
  "url": "<string>",
  "count": 0,
  "region": "<string>",
  "routes": [
    {
      "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>"
    }
  ],
  "country": "<string>",
  "country_name": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c1ed419c-ac86-47a6-a6fa-4a216e01d0d1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c1ed419c-ac86-47a6-a6fa-4a216e01d0d1",
    "variables": {
        "region": "europe",
        "country": "denmark"
    }
}'

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="c1ed419c-ac86-47a6-a6fa-4a216e01d0d1") — the "list_country_shipping_routes" function, which returns all shipping routes for a country from https://maersk.com with ordered port calls, per-leg and cumulative transit times, arrival and departure days, location IDs, and source URLs..

It takes region (str), country (str). Return the result as structured JSON.