Yahoo Weather Scraper avatar

Yahoo Weather Scraper

Pricing

Pay per usage

Go to Apify Store
Yahoo Weather Scraper

Yahoo Weather Scraper

Scrapes Yahoo Weather for current conditions, hourly and daily forecasts, humidity, wind, UV index, and air quality for any location.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Search API

Search API

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Scrapes Yahoo Weather for current conditions, hourly and daily forecasts, humidity, UV index, air quality, visibility, pressure, and sun times for configured location paths.

What this Actor collects

The Actor creates one dataset item per requested Yahoo Weather location path, with current conditions and available hourly or daily forecasts.

  • Uses the input limits and filters below to control the crawl.
  • Stores source-backed fields defined by the 20-field dataset schema.
  • Optional condition and forecast fields are populated only when Yahoo exposes them for the location.

Use cases

  • Forecast monitoring
  • Location-based planning
  • Weather-data enrichment

Input

Provide input in JSON. Fields marked required must be supplied; source-specific alternatives and constraints are described in the field text.

FieldTypeRequiredDefaultDescription
locationsarrayYes["us/tn/nashville"]Array of location URL paths to scrape. Use the path after weather.yahoo.com. Examples: 'us/tn/nashville', 'us/ca/san-francisco', 'us/ny/new-york'.
proxyConfigurationobjectNoProxy settings.

Example input

{
"locations": [
"us/tn/nashville",
"us/ca/sacramento"
],
"proxyConfiguration": {
"useApifyProxy": false
}
}

Output

The default dataset contains one item per requested location. Forecast arrays and individual condition fields appear only when Yahoo exposes them for that page.

FieldTypeDescription
scrapedAtstringScraped At
locationstringLocation URL
locationNamestringLocation Name
currentTempstringCurrent Temperature
realFeelstringRealFeel Temperature
conditionstringCurrent Condition
highstringToday's High
lowstringToday's Low
precipitationChancestringPrecipitation Chance
sunrisestringSunrise
sunsetstringSunset
humiditystringHumidity
airQualitystringAir Quality
peakUVstringPeak UV
allergensstringAllergens
pressurestringPressure

Example dataset item

This compact example is a subset of one item in local Actor storage; every displayed value is unmodified.

{
"scrapedAt": "2026-07-23T12:35:02.353Z",
"location": "us/ca/sacramento",
"locationName": "Sacramento",
"currentTemp": "59°",
"condition": "Clear",
"high": "94°",
"low": "58°",
"sunrise": "6:01 AM",
"sunset": "8:24 PM",
"humidity": "Humid · 88%",
"airQuality": "Excellent · 86 UAQI",
"peakUV": "Very high · 10 UV"
}