voshod-solnca.ru APIvoshod-solnca.ru ↗
Get the next Ekadashi fasting date, start time, fasting window, and a full-year calendar of Ekadashi days for any supported Russian city.
curl -X GET 'https://api.parse.bot/scraper/9af620de-ce55-4245-82c0-1973a1148805/get_next_ekadashi' \ -H 'X-API-Key: $PARSE_API_KEY'
Get the next Ekadashi fasting day and a full year calendar of upcoming Ekadashi dates for a specified city. Returns the nearest fasting date, start time, end window, and a list of all upcoming Ekadashi days with detailed timing information.
| Param | Type | Description |
|---|---|---|
| cityrequired | string | City name in Russian (e.g. алматы, москва, санкт-петербург). Must match a city available on the site's Ekadashi calendar. |
{
"type": "object",
"fields": {
"city": "string",
"raw_info": "string — full text of the nearest Ekadashi info",
"day_of_week": "string — day of the week in Russian",
"ekadashi_date": "string — date of the next Ekadashi (e.g. 11 июня 2026)",
"fast_end_date": "string — date when fasting ends",
"fast_start_time": "string — time fasting begins (HH:MM)",
"upcoming_ekadashi": "array of objects with date, day_of_week, fast_start_time, fast_end_info, tithi_start, sunrise",
"fast_end_window_end": "string — latest time to break the fast (HH:MM)",
"fast_end_window_start": "string — earliest time to break the fast (HH:MM)"
},
"sample": {
"city": "алматы",
"raw_info": "Ближайший день поста экадаши для Алматы: 11 июня 2026, четверг. Начало поста: 3:37. Выход из поста: 12 июня 2026, в период с 5:13 до 7:43.",
"day_of_week": "четверг",
"ekadashi_date": "11 июня 2026",
"fast_end_date": "12 июня 2026",
"fast_start_time": "3:37",
"upcoming_ekadashi": [
{
"date": "11.06.2026",
"sunrise": "05:13",
"day_of_week": "Четверг",
"tithi_start": "10:27(Двадаши)",
"fast_end_info": "05:13—07:43,12.06.2026",
"fast_start_time": "03:37"
}
],
"fast_end_window_end": "7:43",
"fast_end_window_start": "5:13"
}
}About the voshod-solnca.ru API
The voshod-solnca.ru API exposes 1 endpoint — get_next_ekadashi — that returns 9 structured fields covering the nearest Ekadashi fasting date, precise fasting start and end window, and a full list of upcoming Ekadashi days for a given city. Cities are specified in Russian (e.g. москва, алматы), and the response includes per-entry timing details such as tithi start and sunrise for each date in the calendar.
What the API Returns
The get_next_ekadashi endpoint accepts a single required parameter — city — as a Russian-language city name (e.g. алматы, москва, санкт-петербург). It returns the next Ekadashi fasting date in the ekadashi_date field (e.g. 11 июня 2026), the day of the week in Russian via day_of_week, and a raw_info string containing the full original text of the nearest Ekadashi description as it appears on the source page.
Fasting Window Fields
For the immediate next Ekadashi, the response includes fast_start_time (when fasting begins, HH:MM format), fast_end_window_start and fast_end_window_end (the earliest and latest acceptable times to break the fast), and fast_end_date (the calendar date on which fasting ends). This gives enough detail to build reminders or schedule integrations around the full fasting period, not just the single date.
Upcoming Ekadashi Calendar
The upcoming_ekadashi array lists future Ekadashi dates beyond the immediate next one. Each object in the array includes date, day_of_week, fast_start_time, fast_end_info, tithi_start, and sunrise. The tithi_start and sunrise fields provide lunar and solar timing context specific to the selected city, which matters because these times vary by geographic location.
City Coverage and Input Format
City names must be supplied in Russian and must match a city available on voshod-solnca.ru's Ekadashi pages. The site covers cities across Russia, Kazakhstan, and neighboring regions. Passing a city name that doesn't match an available entry will not return valid data, so confirm the spelling against the site's city list before integrating.
- Display the next Ekadashi date and fasting window in a Hindu calendar or devotional mobile app.
- Send push notifications using
fast_start_timeandfast_end_window_startto remind users when to begin and break their fast. - Populate a year-ahead fasting calendar using the
upcoming_ekadashiarray with per-entrysunriseandtithi_startdata. - Build a city-aware fasting scheduler that adjusts times based on the
cityparameter for users in different locations. - Feed Ekadashi dates and day-of-week info into a general Hindu religious events aggregator alongside other observances.
- Generate ICS calendar files from the
upcoming_ekadashilist so users can subscribe to fasting reminders in any calendar app.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does voshod-solnca.ru have an official developer API?+
What does the `upcoming_ekadashi` array contain, and how many entries does it typically include?+
upcoming_ekadashi contains date, day_of_week, fast_start_time, fast_end_info, tithi_start, and sunrise. The array covers the full remaining Ekadashi dates for the current calendar year as listed on the source page for the requested city. The exact count depends on how many dates remain in the year at the time of the request.Does the fasting window differ between cities?+
fast_start_time, fast_end_window_start, fast_end_window_end, and sunrise values in both the top-level response and each upcoming_ekadashi entry are specific to the city passed in the city parameter. voshod-solnca.ru calculates these times based on local solar and lunar positions, so querying москва and алматы for the same Ekadashi will return different times.Does the API cover Ekadashi data for cities outside Russia and Kazakhstan?+
Can I retrieve historical Ekadashi dates or only upcoming ones?+
get_next_ekadashi endpoint returns the next Ekadashi date and the upcoming calendar list, not historical records. Past Ekadashi dates are not exposed. You can fork this API on Parse and revise it to add an endpoint that targets archive or past-year pages if the source makes them available.