# Varshaphal: Tajika annual chart

`POST https://api.astroway.info/v1/vedic/varshaphal`

The Tajika annual chart for one year of life. Cast on the moment the SIDEREAL Sun returns to its natal longitude, which for an adult sits many hours away from the tropical solar return and therefore on a different ascendant: the gap runs 0.4 h at age 1, 3.3 h at 10, 7.0 h at 20, 12.5 h at 36 and 17.2 h at 50. Returns the year entry to the second, the sidereal annual chart, the muntha (the natal lagna advanced one sign per completed year) with its house and lord, Panchavargiya bala for all seven grahas (griha, uchcha, hadda, drekkana, navamsa, summed and quartered into Vishwa out of 20), the five office bearers a year lord is chosen from, and five sahams. The year lord comes back twice, because the sources disagree: `varshesha` follows the Hayanaratna, which requires an aspect to the annual ascendant before strength is consulted and carries the reason it chose; `varsheshaByStrength` is the modern shortcut of taking the strongest candidate outright. Pass `entryLatitude`/`entryLongitude` to enter the year somewhere other than the birthplace, which moves the ascendant and the houses but not the planets or the muntha. Coordinates are required.

Group: Vedic. Auth: `X-Api-Key` header. Operation ID: `vedic_varshaphal`.

## Parameters

| Name | In | Required | Type | Description |
|---|---|---|---|---|
| `undefined` |  | no | object |  |
| `undefined` |  | no | object |  |

## Request body

| Field | Type | Required | Description |
|---|---|---|---|
| `date` | string | yes |  |
| `time` | string | yes |  |
| `timezoneOffset` | number | no | Hours from UTC at the given moment, not minutes. Fractional zones are hours too: 5.5 for India, 5.75 for Nepal, -3.5 for Newfoundland. Defaults to 0, meaning UTC. Ignored when timezone is sent. |
| `timezone` | string | no | IANA zone name such as Europe/Kyiv, or auto to look the zone up from latitude and longitude. The server takes the offset that zone kept at this local date and time, summer time included, and uses it in place of timezoneOffset. A clock time that happened twice takes the first occurrence; one skipped when clocks went forward takes the offset from before the change. Abbreviations such as EST are refused. Before 1970 the tz database is not reliable for every place, so send timezoneOffset when the local clock is known. |
| `latitude` | number | yes | Birth latitude. Required: the muntha starts at the natal lagna. |
| `longitude` | number | yes | Birth longitude. Required: the muntha starts at the natal lagna. |
| `houseSystem` | "P" \| "K" \| "R" \| "C" \| "E" \| "W" \| "B" \| "M" \| … | no |  |
| `name` | string | no |  |
| `city` | string | no |  |
| `zodiacType` | "tropical" \| "sidereal" | no |  |
| `ayanamsaId` | number | no |  |
| `ayanamsa` | "fagan-bradley" \| "lahiri" \| "de-luce" \| "raman" \| "krishnamurti" \| "kp" \| "yukteshwar" \| "jn-bhasin" \| … | no | Sidereal school by name. Lahiri when omitted. Equivalent to ayanamsaId; send either. |
| `cosmogram` | boolean | no |  |
| `year` | integer | yes | Calendar year of the solar return. The year is entered on the birthday of that year, not on 1 January. |
| `entryLatitude` | number | no | Where the year is entered, if not the birthplace. Classically the residence on the birthday. Moves the annual ascendant and every house with it; the planets and the muntha do not move. Must be sent together with entryLongitude. |
| `entryLongitude` | number | no | Longitude of the year entry. Must be sent together with entryLatitude. |

```json
{
  "date": "1990-05-15",
  "time": "15:30:00",
  "timezone": "Europe/Kyiv",
  "latitude": 50.45,
  "longitude": 30.52,
  "year": 2026
}
```

## Responses

| Status | Meaning |
|---|---|
| 200 | Successful calculation |
| 400 | Validation error |
| 401 | Missing or invalid API key |

### Success fields, under `data`

| Field | Type | Required | Description |
|---|---|---|---|
| `year` | number | no |  |
| `yearsElapsed` | number | no |  |
| `pravesh` | object | no |  |
| `pravesh.julianDay` | number | no |  |
| `pravesh.utc` | string | no |  |
| `isDayBirth` | boolean | no |  |
| `ayanamsa` | number | no |  |
| `ayanamsaName` | string | no |  |
| `ascendant` | object | no |  |
| `ascendant.longitude` | number | no |  |
| `ascendant.sign` | number | no |  |
| `ascendant.signName` | string | no |  |
| `ascendant.degreeInSign` | number | no |  |
| `cusps` | number[] | no |  |
| `planets` | object[] | no |  |
| `muntha` | object | no |  |
| `muntha.sign` | number | no |  |
| `muntha.signName` | string | no |  |
| `muntha.degree` | number | no |  |
| `muntha.house` | number | no |  |
| `muntha.lord` | number | no |  |
| `muntha.lordName` | string | no |  |
| `bala` | object | no |  |
| `bala.3` | object | no |  |
| `sahams` | object[] | no |  |
| `candidates` | object[] | no |  |
| `varshesha` | object | no |  |
| `varshesha.planet` | number | no |  |
| `varshesha.planetName` | string | no |  |
| `varshesha.role` | string | no |  |
| `varshesha.school` | string | no |  |
| `varshesha.reason` | string | no |  |
| `varsheshaByStrength` | object | no |  |
| `varsheshaByStrength.planet` | number | no |  |
| `varsheshaByStrength.planetName` | string | no |  |
| `varsheshaByStrength.role` | string | no |  |
| `varsheshaByStrength.school` | string | no |  |
| `note` | string | no |  |

## Example

```bash
curl -X POST https://api.astroway.info/v1/vedic/varshaphal \
  -H "X-Api-Key: aw_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "date": "1990-05-15", "time": "15:30:00", "timezone": "Europe/Kyiv", "latitude": 50.45, "longitude": 30.52, "year": 2026 }'
```

---

Rendered from https://api.astroway.info/v1/openapi.json. HTML page: https://api.astroway.info/docs/api/operations/vedic_varshaphal/
