Dashas: Shoola Pranadasha
POST
/vedic/dashas/shoola/prana
curl -X POST https://api.astroway.info/v1/vedic/dashas/shoola/prana \ -H "X-Api-Key: aw_live_..." \ -H "Content-Type: application/json" \ -d '{ "date": "1996-12-07", "time": "10:34:00", "timezoneOffset": 5.5, "latitude": 13.0389, "longitude": 80.2619, "targetDate": "2026-05-07" }'const res = await fetch('https://api.astroway.info/v1/vedic/dashas/shoola/prana', { method: 'POST', headers: { 'X-Api-Key': process.env.ASTROWAY_API_KEY, 'Content-Type': 'application/json', }, body: JSON.stringify({ "date": "1996-12-07", "time": "10:34:00", "timezoneOffset": 5.5, "latitude": 13.0389, "longitude": 80.2619, "targetDate": "2026-05-07" }),});const { ok, data, error } = await res.json();if (!ok) throw new Error(error.message);console.log(data);import os, requests
r = requests.post( 'https://api.astroway.info/v1/vedic/dashas/shoola/prana', headers={'X-Api-Key': os.environ['ASTROWAY_API_KEY'], 'Content-Type': 'application/json'}, json={ 'date': "1996-12-07", 'time': "10:34:00", 'timezoneOffset': 5.5, 'latitude': 13.0389, 'longitude': 80.2619, 'targetDate': "2026-05-07" },)result = r.json()if not result['ok']: raise RuntimeError(result['error']['message'])print(result['data'])<?phpuse GuzzleHttp\Client;
$client = new Client(['base_uri' => 'https://api.astroway.info/v1/']);$r = $client->post('vedic/dashas/shoola/prana', [ 'headers' => ['X-Api-Key' => getenv('ASTROWAY_API_KEY')], 'json' => [ 'date' => '1996-12-07', 'time' => '10:34:00', 'timezoneOffset' => 5.5, 'latitude' => 13.0389, 'longitude' => 80.2619, 'targetDate' => '2026-05-07', ],]);$result = json_decode($r->getBody(), true);if (!$result['ok']) throw new \RuntimeException($result['error']['message']);print_r($result['data']);Shoola Pranadasha: 5-level cascade (finest grain).
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/json
Birth data for a single natal chart. Required: date (YYYY-MM-DD), time (HH:mm:ss), latitude and longitude in decimal degrees. The short forms lat, lon, lng and tz are rejected with 400 INVALID_FIELD; pass the full names. timezoneOffset is hours from UTC and defaults to 0, meaning UTC. city is a display label only: nothing here geocodes it, so it never stands in for coordinates.
object
date required
string
time required
string
timezoneOffset
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.
number
latitude required
number
longitude required
number
houseSystem
string
name
string
city
string
zodiacType
string
ayanamsaId
number
ayanamsa
Sidereal school by name. Lahiri when omitted. Equivalent to ayanamsaId; send either.
string
cosmogram
boolean
targetDate
string
targetTime
string
targetTzOffset
number
houseIndex
integer
Example
{ "date": "1996-12-07", "time": "10:34:00", "timezoneOffset": 5.5, "latitude": 13.0389, "longitude": 80.2619, "targetDate": "2026-05-07"}Responses
Section titled “ Responses ”Successful calculation
Media type application/json
object
ok
boolean
data
object
system
string
level
string
ayanamsa
number
lagna
object
sign
number
signName
string
seed
object
houseIndex
number
baseSign
number
sign
number
signName
string
antardasaSeedOption
number
currentMaha
object
sign
number
signName
string
startJd
number
endJd
number
startDate
string
endDate
string
durationYears
number
currentAntar
object
sign
number
signName
string
startJd
number
endJd
number
startDate
string
endDate
string
durationYears
number
currentPratyantar
object
sign
number
signName
string
startJd
number
endJd
number
startDate
string
endDate
string
durationYears
number
currentSookshma
object
sign
number
signName
string
startJd
number
endJd
number
startDate
string
endDate
string
durationYears
number
periods
Array<object>
object
signIndex
number
signName
string
durationYears
number
startJd
number
endJd
number
startDate
string
endDate
string
rowIndex
number
Example
{ "ok": true, "data": { "system": "Shoola", "level": "prana", "ayanamsa": 23.81424752115805, "lagna": { "sign": 9, "signName": "Capricorn" }, "seed": { "houseIndex": 1, "baseSign": 9, "sign": 9, "signName": "Capricorn", "antardasaSeedOption": 2 }, "currentMaha": { "sign": 0, "signName": "Aries", "startJd": 2460286.6329391105, "endJd": 2463573.9402151103, "startDate": "2023-12-08 08:41", "endDate": "2032-12-07 16:03", "durationYears": 9 }, "currentAntar": { "sign": 9, "signName": "Capricorn", "startJd": 2461108.45975811, "endJd": 2461382.4020311097, "startDate": "2026-03-09 04:32", "endDate": "2026-12-08 03:08", "durationYears": 0.75 }, "currentPratyantar": { "sign": 11, "signName": "Pisces", "startJd": 2461154.11680361, "endJd": 2461176.9453263604, "startDate": "2026-04-23 20:18", "endDate": "2026-05-16 16:11", "durationYears": 0.0625 }, "currentSookshma": { "sign": 6, "signName": "Libra", "startJd": 2461167.4334418806, "endJd": 2461169.3358187764, "startDate": "2026-05-07 03:54", "endDate": "2026-05-09 01:33", "durationYears": 0.005208333333333333 }, "periods": [ { "signIndex": 6, "signName": "Libra", "durationYears": 0.00043402777777777775, "startJd": 2461167.4334418806, "endJd": 2461167.5919732885, "startDate": "2026-05-07 03:54", "endDate": "2026-05-07 07:42", "rowIndex": 0 } ] }}Validation error
Media type application/json
Example
{ "ok": false, "error": { "code": "INVALID_INPUT", "message": "Validation failed: date: Date must be YYYY-MM-DD", "details": [ { "path": "date", "message": "Date must be YYYY-MM-DD" } ] }}Missing or invalid API key
Media type application/json
Example
{ "ok": false, "error": { "code": "INVALID_API_KEY", "message": "Invalid API key" }} Корисно?
Дякуємо за фідбек.