Marketplace
No threads yet
Live

get_historical_airport_weather

wunderground.com

Returns hourly historical airport-station observations from https://wunderground.com for a requested date range up to 31 days, enriched with UTC timestamp fields, row classification, and QC/provenance placeholders. Includes station metadata, response metadata, and per-day derived vs source-published daily maximum temperature summaries.

Parameters6
Runs12
Updated8d ago
Operational12 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_historical_airport_weather?

Returns hourly historical airport-station observations from https://wunderground.com for a requested date range up to 31 days, enriched with UTC timestamp fields, row classification, and QC/provenance placeholders. Includes station metadata, response metadata, and per-day derived vs source-published daily 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, start_date, end_date, 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/e5f854f0-2ec1-4592-81ca-ceb29acf70a9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e5f854f0-2ec1-4592-81ca-ceb29acf70a9",
    "variables": {
        "station_code": "EGLL",
        "country_code": "GB",
        "start_date": "2026-08-01",
        "end_date": "2026-08-03",
        "units": "e",
        "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="e5f854f0-2ec1-4592-81ca-ceb29acf70a9") — the "get_historical_airport_weather" function, which returns hourly historical airport-station observations from https://wunderground.com for a requested date range up to 31 days, enriched with UTC timestamp fields, row classification, and QC/provenance placeholders. Includes station metadata, response metadata, and per-day derived vs source-published daily maximum temperature summaries..

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