Marketplace
No threads yet
Live

get_monthly_airport_weather

wunderground.com

Returns all hourly airport-station observations for a full calendar month from https://wunderground.com, enriched with UTC timestamp fields, row classification, and QC/provenance placeholders. Includes station metadata, response metadata, and daily derived vs source-published maximum temperature summaries.

Parameters6
Runs11
Updated8d ago
Operational11 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_monthly_airport_weather?

Returns all hourly airport-station observations for a full calendar month from https://wunderground.com, enriched with UTC timestamp fields, row classification, and QC/provenance placeholders. Includes station metadata, response metadata, and daily derived vs source-published maximum temperature summaries. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass station_code, country_code, year, month, units, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "observations": [
    {}
  ],
  "daily_summary": [
    {
      "date_utc": "<string>",
      "available_hour_count": 0,
      "derived_daily_max_temp": 0,
      "source_published_daily_max_temp": 0
    }
  ],
  "data_source_note": "<string>",
  "station_metadata": {
    "units": "<string>",
    "location_id": "<string>",
    "country_code": "<string>",
    "station_code": "<string>",
    "station_name": "<string>",
    "temperature_unit": "<string>",
    "location_type_code": "<string>"
  },
  "response_metadata": {
    "end_date": "<string>",
    "warnings": [
      "<string>"
    ],
    "row_count": 0,
    "start_date": "<string>",
    "missing_hours_utc": [
      "<string>"
    ],
    "missing_hour_count": 0,
    "expected_hour_count": 0,
    "raw_source_row_count": 0
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0982c7b2-9200-4902-91de-89dcba6946d0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0982c7b2-9200-4902-91de-89dcba6946d0",
    "variables": {
        "station_code": "EGLL",
        "country_code": "GB",
        "year": 2026,
        "month": 7,
        "units": "e",
        "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="0982c7b2-9200-4902-91de-89dcba6946d0") — the "get_monthly_airport_weather" function, which returns all hourly airport-station observations for a full calendar month from https://wunderground.com, enriched with UTC timestamp fields, row classification, and QC/provenance placeholders. Includes station metadata, response metadata, and daily derived vs source-published maximum temperature summaries..

It takes station_code (str), country_code (str), year (int), month (int), units (str), timeout_seconds (int). Return the result as structured JSON.