get

/api/v1/positions/sidereal/ayanamsa

Get ayanamsa information

Overview

Returns information about available ayanamsa systems and their current values.

Parameters

NameTypeInRequiredDescription
datestringqueryNo

Date in ISO format (YYYY-MM-DD) or datetime (YYYY-MM-DDTHH:MM:SSZ or with offset). Defaults to today.

timezonestringqueryNo

IANA timezone name (e.g., America/New_York). Used with date-only values to resolve local time.

Response

200 — Ayanamsa information

date string required
systems array required

array of object

id string required
name string required
description string required
valueAtJ2000 number required
currentValue number 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
    }
  ]
}