get
/api/v1/positions/sidereal/ayanamsa
Get ayanamsa information
Overview
Returns information about available ayanamsa systems and their current values.
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
date | string | query | No | Date in ISO format (YYYY-MM-DD) or datetime (YYYY-MM-DDTHH:MM:SSZ or with offset). Defaults to today. |
timezone | string | query | No | IANA timezone name (e.g., America/New_York). Used with date-only values to resolve local time. |
Response
200 — Ayanamsa information
datestring requiredsystemsarray requiredarray of object
idstring requirednamestring requireddescriptionstring requiredvalueAtJ2000number requiredcurrentValuenumber required
Example Request
cURL
curl "https://api.almuten.io/api/v1/positions/sidereal/ayanamsa" \
-H "Authorization: Bearer YOUR_API_KEY"Example Response
JSON
{
"date": "",
"systems": [
{
"id": "",
"name": "",
"description": "",
"valueAtJ2000": 0,
"currentValue": 0
}
]
}