Yandex Weather Scraper
Pricing
Pay per usage
Yandex Weather Scraper
Scrapes current weather conditions and forecasts from Yandex Weather. Extracts temperature, feels-like, humidity, wind, pressure, UV index, hourly/daily forecast, and more.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Search API
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Categories
Share
Scrapes current weather conditions and forecasts from Yandex Weather. Extracts temperature, feels-like, humidity, wind, pressure, UV index, hourly/daily forecast, and more.
What this Actor collects
The Actor creates one dataset item for the requested location, with current conditions and optional hourly or daily forecast arrays.
- Uses the input limits and filters below to control the crawl.
- Stores source-backed fields defined by the 23-field dataset schema.
- Optional condition, atmosphere, sun, and forecast fields are populated only when Yandex exposes them.
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.
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
location | string | Yes | — | City or location name for weather data (e.g. London, Moscow, or New York). |
language | string | No | "en" | Language code for weather display (e.g. 'en', 'ru'). |
proxyConfiguration | object | No | — | Proxy settings for the scraper. |
Example input
{"location": "London","language": "en","proxyConfiguration": {"useApifyProxy": true}}
Output
The default dataset contains one item for the requested location. Current-condition fields and forecast arrays are included only when Yandex exposes them.
| Field | Type | Description |
|---|---|---|
location | string | Location |
temperature | number | Temperature |
condition | string | Condition |
feelsLike | number | Feels Like |
humidity | integer | Humidity |
windSpeed | number | Wind Speed |
pressureHpa | integer | Pressure (hPa) |
date | string | Date |
type | string | Type |
description | string | Description |
scrapedAt | string | Scraped At |
temperatureUnit | string | Temperature Unit |
windDirection | string | Wind Direction |
pressureMm | integer | Pressure (mm) |
uvIndex | number | UV Index |
visibility | number | Visibility |
Example dataset item
This compact example is a subset of one item in local Actor storage; every displayed value is unmodified.
{"location": "London","temperature": 19,"feelsLike": 24,"humidity": 39,"date": "2026-07-23","type": "weather","description": "More","scrapedAt": "2026-07-23T12:39:41.165Z","temperatureUnit": "C","uvIndex": 5,"cloudCover": 25,"precipitation": 25}