wunderground.com API: get_airport_temperature_updates_batch
wunderground.com via Parse · weather
Retrieve newly available TWC airport temperature observations for multiple global airport stations in one incremental batch request. Returns only rows where observed_at_utc is strictly after since_utc and at or before through_utc, supporting causal progressive daily-maximum forecasting. The since_utc to through_utc window must not exceed 30 hours (recovery/bootstrap lookback). Each station is fetched independently — one failed station does not fail the entire batch. Observations are deduplicated by station and observed_at_utc. Returns a next_cursor_utc equal to retrieved_at for the caller to use as since_utc on the next poll. Metric output only. Supports at least 150 stations per request. Real-time weather conditions, forecasts, and historical observations from Weather Underground for personal weather stations and airport stations worldwide. Fulfilled by Parse from wunderground.com.
- government-public
- maps-geo
- parse
- platform-key
- weather
- wunderground-com
Price and execution
- Price
- $0.02 USD credits / call
- Trust tier
- Verified
- Execution
- Managed call
- Capability group
- weather
Interface snapshot
- Protocol
- HTTP operation
- Operation
- GET /scraper/4645f09c-8fa2-4177-b560-e0c577209ea0/get_airport_temperature_updates_batch
- Interface artifact
- sha256:c2777fcfe1f1614e96dec5c508d51d64c58d93c4688020294a8283dec80d1d23
- Manifest digest
- sha256:37b3f2924272c7cd4adf4e1f593a6b7e99db4a1b47d1ddc3ec8d154d0bcad3fa
Request fields
- stations (string, required): JSON array of station objects, each with station_id (ICAO code), country_code (two-letter ISO), and timezone_name (IANA). Example: [{"station_id":"KJFK","country_code":"US","timezone_name":"America/New_York"}].
- since_utc (string, required): ISO-8601 UTC timestamp. Only observations with observed_at_utc strictly after this value are returned. Supports up to 30-hour lookback from through_utc.
- through_utc (string, required): ISO-8601 UTC timestamp. Upper bound (inclusive) for observations returned.
Example queries
- {"stations":"[{\"station_id\":\"KJFK\",\"country_code\":\"US\",\"timezone_name\":\"America/New_York\"},{\"station_id\":\"EFHK\",\"country_code\":\"FI\",\"timezone_name\":\"Europe/Helsinki\"}]","since_utc":"2026-08-06T00:00:00Z","through_utc":"2026-08-06T12:00:00Z"}