Marketplace
No threads yet
Live

get_airport_temperature_series

wunderground.com

Returns complete airport temperature observations from https://wunderground.com for up to 366 local dates, with batching, deduplication, local grouping, and daily maxima.

Parameters6
Runs7
Updated3d ago
Operational7 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_airport_temperature_series?

Returns complete airport temperature observations from https://wunderground.com for up to 366 local dates, with batching, deduplication, local grouping, and daily maxima. 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, timezone_name, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "units": "<string>",
  "end_date": "<string>",
  "timezone": "<string>",
  "start_date": "<string>",
  "batch_count": 0,
  "location_id": "<string>",
  "country_code": "<string>",
  "daily_maxima": [
    {
      "local_date": "<string>",
      "max_temperature_c": 0,
      "observation_count": 0
    }
  ],
  "station_code": "<string>",
  "station_name": "<string>",
  "temperature_unit": "<string>",
  "observation_count": 0,
  "source_observation_count": 0,
  "observations_by_local_date": [
    {
      "local_date": "<string>",
      "observations": [
        {}
      ],
      "observation_count": 0
    }
  ],
  "duplicate_observation_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c519054f-61e0-46a4-af32-aa018206e672/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c519054f-61e0-46a4-af32-aa018206e672",
    "variables": {
        "station_code": "EGKK",
        "country_code": "GB",
        "start_date": "2026-08-01",
        "end_date": "2026-08-07",
        "timezone_name": "Europe/London",
        "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="c519054f-61e0-46a4-af32-aa018206e672") — the "get_airport_temperature_series" function, which returns complete airport temperature observations from https://wunderground.com for up to 366 local dates, with batching, deduplication, local grouping, and daily maxima..

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