list_fire_detections
worldmonitor.appReturns live climate anomaly and satellite or agency fire detection records from https://worldmonitor.app, with zone, severity, confidence and satellite filters.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_fire_detections?
Returns live climate anomaly and satellite or agency fire detection records from https://worldmonitor.app, with zone, severity, confidence and satellite filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass data_type, zone, satellite, min_severity, min_confidence, emergencies_only, 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/ec4acea1-155c-44f8-b713-9871ac8135d3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ec4acea1-155c-44f8-b713-9871ac8135d3",
"variables": {
"data_type": "climate_anomalies",
"zone": "",
"satellite": "",
"min_severity": "",
"min_confidence": "",
"emergencies_only": false,
"limit": 100,
"timeout_seconds": 45
}
}'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="ec4acea1-155c-44f8-b713-9871ac8135d3") — the "list_fire_detections" function, which returns live climate anomaly and satellite or agency fire detection records from https://worldmonitor.app, with zone, severity, confidence and satellite filters.. It takes data_type (str), zone (str), satellite (str), min_severity (str), min_confidence (str), emergencies_only (bool), limit (int), timeout_seconds (int). Return the result as structured JSON.