Live
search_shipping_routes
maersk.comSearches all worldwide shipping-route categories from https://maersk.com by route name, slug, or category keyword and returns complete matching route records.
Parameters3
Runs5
Updated3d ago
Operational5 runs · 100% 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 search_shipping_routes?
Searches all worldwide shipping-route categories from https://maersk.com by route name, slug, or category keyword and returns complete matching route records. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, timeout_seconds, max_workers and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"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>"
}
],
"category_count": 0,
"total_route_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/23f4cbc2-5e44-47c7-a601-ffe088bd1a42/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "23f4cbc2-5e44-47c7-a601-ffe088bd1a42",
"variables": {
"query": "feeder",
"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="23f4cbc2-5e44-47c7-a601-ffe088bd1a42") — the "search_shipping_routes" function, which searches all worldwide shipping-route categories from https://maersk.com by route name, slug, or category keyword and returns complete matching route records.. It takes query (str), timeout_seconds (int), max_workers (int). Return the result as structured JSON.