Marketplace
No threads yet
Live

list_gps_jamming_hexes

api.worldmonitor.app

Returns worldwide H3 hex records for GPS jamming and spoofing detection from https://worldmonitor.app, including interference level, percentage and affected aircraft counts.

Parameters6
Runs7
Updated3d ago
Operational7 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 list_gps_jamming_hexes?

Returns worldwide H3 hex records for GPS jamming and spoofing detection from https://worldmonitor.app, including interference level, percentage and affected aircraft counts. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass level, region, min_pct, min_affected_aircraft, limit, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "hexes": [
    {}
  ],
  "stats": {},
  "metadata": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/657678fe-1a2c-4759-a600-ce1c11ee1220/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "657678fe-1a2c-4759-a600-ce1c11ee1220",
    "variables": {
        "level": "all",
        "region": "",
        "min_pct": 0.0,
        "min_affected_aircraft": 0,
        "limit": 0,
        "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="657678fe-1a2c-4759-a600-ce1c11ee1220") — the "list_gps_jamming_hexes" function, which returns worldwide H3 hex records for GPS jamming and spoofing detection from https://worldmonitor.app, including interference level, percentage and affected aircraft counts..

It takes level (str), region (str), min_pct (float), min_affected_aircraft (int), limit (int), timeout_seconds (int). Return the result as structured JSON.