Marketplace
No threads yet
Live

get_us_navy_fleet_tracking

worldmonitor.app

Returns the latest US Navy fleet and Marine tracker report from https://worldmonitor.app, including battle-force totals, vessel locations and deployment details, strike groups, report regions, source article metadata, and parsing warnings. Optional filters narrow vessels by region, type, or deployment status.

Parameters3
Runs12
Updated9d ago

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_us_navy_fleet_tracking?

Returns the latest US Navy fleet and Marine tracker report from https://worldmonitor.app, including battle-force totals, vessel locations and deployment details, strike groups, report regions, source article metadata, and parsing warnings. Optional filters narrow vessels by region, type, or deployment status. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region, vessel_type, deployment_status and get the result back without maintaining a scraper.

Response

{
  "stale": true,
  "cached": true,
  "report": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f75b7cdf-5b32-49c1-aca8-e8449f1ca13d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f75b7cdf-5b32-49c1-aca8-e8449f1ca13d",
    "variables": {
        "region": "",
        "vessel_type": "",
        "deployment_status": ""
    }
}'

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="f75b7cdf-5b32-49c1-aca8-e8449f1ca13d") — the "get_us_navy_fleet_tracking" function, which returns the latest US Navy fleet and Marine tracker report from https://worldmonitor.app, including battle-force totals, vessel locations and deployment details, strike groups, report regions, source article metadata, and parsing warnings. Optional filters narrow vessels by region, type, or deployment status..

It takes region (str), vessel_type (str), deployment_status (str). Return the result as structured JSON.