Live
get_supply_chain_data
api.worldmonitor.appReturns maritime chokepoint status for Suez, Hormuz, Malacca, and Panama or critical-mineral concentration and producer records from https://worldmonitor.app.
Parameters4
Runs8
Updated3d ago
Operational8 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 get_supply_chain_data?
Returns maritime chokepoint status for Suez, Hormuz, Malacca, and Panama or critical-mineral concentration and producer records from https://worldmonitor.app. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass data_type, chokepoint_ids, mineral_names, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"source": "<string>",
"records": [
{}
],
"metadata": {},
"data_type": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/d24d51d9-ffba-48b8-98d4-d5ba6c88152d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d24d51d9-ffba-48b8-98d4-d5ba6c88152d",
"variables": {
"data_type": "chokepoints",
"chokepoint_ids": ["suez", "hormuz_strait", "malacca_strait", "panama"],
"mineral_names": [],
"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.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="d24d51d9-ffba-48b8-98d4-d5ba6c88152d") — the "get_supply_chain_data" function, which returns maritime chokepoint status for Suez, Hormuz, Malacca, and Panama or critical-mineral concentration and producer records from https://worldmonitor.app.. It takes data_type (str), chokepoint_ids (list[str]), mineral_names (list[str]), timeout_seconds (int). Return the result as structured JSON.