Marketplace
No threads yet
Live

get_weather_forecasts

wunderground.com

Returns 7-day daily forecasts with daypart narratives and 2-day hourly forecasts for coordinates from https://wunderground.com, including temperatures, precipitation, wind, UV, and sun/moon details.

Parameters4
Runs10
Updated10d ago
Operational10 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 get_weather_forecasts?

Returns 7-day daily forecasts with daypart narratives and 2-day hourly forecasts for coordinates from https://wunderground.com, including temperatures, precipitation, wind, UV, and sun/moon details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass latitude, longitude, units, language and get the result back without maintaining a scraper.

Response

{
  "daily_forecast": [
    {}
  ],
  "hourly_forecast": [
    {}
  ],
  "daypart_forecast": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/42993e58-a092-439d-a637-420419454c31/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "42993e58-a092-439d-a637-420419454c31",
    "variables": {
        "latitude": 51.5074,
        "longitude": -0.1278,
        "units": "m",
        "language": "en-US"
    }
}'

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="42993e58-a092-439d-a637-420419454c31") — the "get_weather_forecasts" function, which returns 7-day daily forecasts with daypart narratives and 2-day hourly forecasts for coordinates from https://wunderground.com, including temperatures, precipitation, wind, UV, and sun/moon details..

It takes latitude (float), longitude (float), units (str), language (str). Return the result as structured JSON.