Marketplace
No threads yet
Live

list_shipping_routes

maersk.com

Returns every Maersk shipping route in a selected category from https://maersk.com with route IDs, slugs, names, port lists, endpoint ports, and URLs.

Parameters1
Runs9
Updated3d ago
Degraded9 runs · 88.8% 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_shipping_routes?

Returns every Maersk shipping route in a selected category from https://maersk.com with route IDs, slugs, names, port lists, endpoint ports, and URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_slug and get the result back without maintaining a scraper.

Response

{
  "url": "<string>",
  "count": 0,
  "routes": [
    {
      "url": "<string>",
      "name": "<string>",
      "ports": [
        "<string>"
      ],
      "end_port": "<string>",
      "route_id": "<string>",
      "short_slug": "<string>",
      "start_port": "<string>",
      "category_slug": "<string>"
    }
  ],
  "category_name": "<string>",
  "category_slug": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f1ef58fe-4fe7-4e3f-b43e-ed7a6f497a8e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f1ef58fe-4fe7-4e3f-b43e-ed7a6f497a8e",
    "variables": {
        "category_slug": "DEFAULT_CATEGORY_SLUG"
    }
}'

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="f1ef58fe-4fe7-4e3f-b43e-ed7a6f497a8e") — the "list_shipping_routes" function, which returns every Maersk shipping route in a selected category from https://maersk.com with route IDs, slugs, names, port lists, endpoint ports, and URLs..

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