Marketplace
No threads yet
Live

list_nearby_stations

api.weather.com

Searches https://wunderground.com for nearby personal and official weather stations around coordinates or station IDs, deduplicated and sorted by distance.

Parameters6
Runs6
Updated3d ago
Operational6 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_nearby_stations?

Searches https://wunderground.com for nearby personal and official weather stations around coordinates or station IDs, deduplicated and sorted by distance. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass locations, radius_km, station_type, language, timeout_seconds, max_workers and get the result back without maintaining a scraper.

Response

{
  "errors": [
    {}
  ],
  "stations": [
    {
      "name": "<string>",
      "latitude": 0,
      "longitude": 0,
      "station_id": "<string>",
      "station_key": "<string>",
      "station_type": "<string>",
      "near_locations": [
        {}
      ],
      "source_records": [
        {}
      ],
      "source_products": [
        "<string>"
      ],
      "nearest_distance_km": 0,
      "nearest_distance_mi": 0
    }
  ],
  "radius_km": 0,
  "input_count": 0,
  "station_type": "<string>",
  "station_count": 0,
  "resolved_inputs": [
    {}
  ],
  "resolved_input_count": 0,
  "product_request_count": 0,
  "upstream_limit_per_product_per_input": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a7c8a24f-aeb9-4173-bcce-de5914d2e5b4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a7c8a24f-aeb9-4173-bcce-de5914d2e5b4",
    "variables": {
        "locations": "DEFAULT_LOCATIONS",
        "radius_km": 25.0,
        "station_type": "all",
        "language": "en-US",
        "timeout_seconds": 20,
        "max_workers": 12
    }
}'

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="a7c8a24f-aeb9-4173-bcce-de5914d2e5b4") — the "list_nearby_stations" function, which searches https://wunderground.com for nearby personal and official weather stations around coordinates or station IDs, deduplicated and sorted by distance..

It takes locations (list[str]), radius_km (float), station_type (str), language (str), timeout_seconds (int), max_workers (int). Return the result as structured JSON.