Live
list_shipping_routes
maersk.comReturns all shipping routes across 25 worldwide categories from https://maersk.com with route IDs, names, slugs, category context, ports, endpoints, and URLs.
Parameters2
Runs6
Updated3d ago
Degraded6 runs · 83.3% succeeded
30 days ago90 days agoranfailednot checkedtoday
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 all shipping routes across 25 worldwide categories from https://maersk.com with route IDs, names, slugs, category context, ports, endpoints, and URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass timeout_seconds, max_workers and get the result back without maintaining a scraper.
Response
{
"count": 0,
"routes": [
{
"url": "<string>",
"name": "<string>",
"ports": [
"<string>"
],
"end_port": "<string>",
"route_id": "<string>",
"short_slug": "<string>",
"start_port": "<string>",
"category_name": "<string>",
"category_slug": "<string>",
"category_type": "<string>"
}
],
"categories": [
{
"url": "<string>",
"name": "<string>",
"route_count": 0,
"category_slug": "<string>",
"category_type": "<string>"
}
],
"category_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/532109bc-186b-48a2-8c77-055377127324/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "532109bc-186b-48a2-8c77-055377127324",
"variables": {
"timeout_seconds": 40,
"max_workers": 10
}
}'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="532109bc-186b-48a2-8c77-055377127324") — the "list_shipping_routes" function, which returns all shipping routes across 25 worldwide categories from https://maersk.com with route IDs, names, slugs, category context, ports, endpoints, and URLs.. It takes timeout_seconds (int), max_workers (int). Return the result as structured JSON.