search_locations_by_name
maersk.comSearches Maersk locations by name from https://maersk.com across city and terminal records. Returns up to 25 matching results sorted by city name, including geo-identifiers, UN location codes, coordinates, and all non-empty source fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_locations_by_name?
Searches Maersk locations by name from https://maersk.com across city and terminal records. Returns up to 25 matching results sorted by city name, including geo-identifiers, UN location codes, coordinates, and all non-empty source fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, max_results, include_cities, include_ports, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"locations": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/c1fe897e-7474-4cc5-be18-d9bfb4885da4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c1fe897e-7474-4cc5-be18-d9bfb4885da4",
"variables": {
"query": "Rotterdam",
"max_results": 25,
"include_cities": true,
"include_ports": true,
"timeout_seconds": 30
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="c1fe897e-7474-4cc5-be18-d9bfb4885da4") — the "search_locations_by_name" function, which searches Maersk locations by name from https://maersk.com across city and terminal records. Returns up to 25 matching results sorted by city name, including geo-identifiers, UN location codes, coordinates, and all non-empty source fields.. It takes query (str), max_results (int), include_cities (bool), include_ports (bool), timeout_seconds (int). Return the result as structured JSON.