Marketplace
No threads yet
Live

get_container_tracking

maersk.com

Retrieves Maersk container or Bill of Lading tracking from https://maersk.com, including shipment endpoints, container details, and a chronological event timeline. Returns input_not_found when no tracking data exists.

Parameters1
Runs12
Updated10d ago
Operational12 runs · 100% 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 get_container_tracking?

Retrieves Maersk container or Bill of Lading tracking from https://maersk.com, including shipment endpoints, container details, and a chronological event timeline. Returns input_not_found when no tracking data exists. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass tracking_number and get the result back without maintaining a scraper.

Response

{
  "events": [
    {}
  ],
  "status": "<string>",
  "message": "<string>",
  "shipment": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a3183493-2859-40be-ae06-33750204c7df/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a3183493-2859-40be-ae06-33750204c7df",
    "variables": {
        "tracking_number": "MRKU2170186"
    }
}'

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="a3183493-2859-40be-ae06-33750204c7df") — the "get_container_tracking" function, which retrieves Maersk container or Bill of Lading tracking from https://maersk.com, including shipment endpoints, container details, and a chronological event timeline. Returns input_not_found when no tracking data exists..

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