Marketplace
No threads yet
Live

list_infrastructure_status

worldmonitor.app

Returns live internet outage and monitored service status records from https://worldmonitor.app, with optional country, service and status filters.

Parameters6
Runs8
Updated3d ago
Degraded8 runs · 75% 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 list_infrastructure_status?

Returns live internet outage and monitored service status records from https://worldmonitor.app, with optional country, service and status filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass data_type, country, service, status, limit, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "records": [
    {}
  ],
  "data_type": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/3510c07c-9eed-464a-acfe-8f6c29452563/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "3510c07c-9eed-464a-acfe-8f6c29452563",
    "variables": {
        "data_type": "outages",
        "country": "",
        "service": "",
        "status": "",
        "limit": 100,
        "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="3510c07c-9eed-464a-acfe-8f6c29452563") — the "list_infrastructure_status" function, which returns live internet outage and monitored service status records from https://worldmonitor.app, with optional country, service and status filters..

It takes data_type (str), country (str), service (str), status (str), limit (int), timeout_seconds (int). Return the result as structured JSON.