POST · VEDIC

Planets Extended

Endpoint POST https://starsapi.com/api/v3/vedic/natal/planets-extended

Returns the same baseline fields as /natal/planets but adds the 4 outer planets: Uranus, Neptune, Pluto, and Chiron. Total: 13 planets + Ascendant.

The outer planets share the same field structure as the Vedic grahas — same sign, house, nakshatra, degree, and dignity fields. house_lordship is always an empty array for outer planets since they have no traditional Vedic lordship. Use this endpoint when you need a sidereal-positioned Western overlay on a Vedic chart.

Authentication

Required. Three methods accepted:

MethodExample
Header (recommended)X-Api-Key: am_live_xxxxxxxxxxxx
BearerAuthorization: Bearer am_live_xxxxxxxxxxxx
Query?api_key=am_live_xxxxxxxxxxxx

See authentication for security considerations.

Request body

Identical to /natal/planets. All core fields are required.

FieldTypeRequiredDescription
yearintegerYesBirth year, 4-digit (e.g. 1990).
monthintegerYesBirth month, 112.
dayintegerYesDay of month, 131.
hourintegerYesHour in 24-hour local clock time, 023.
minuteintegerYesMinute, 059.
secondintegerNoSecond, 059. Default 0.
latitudenumberYesSigned decimal degrees, −90…90. Positive = North.
longitudenumberYesSigned decimal degrees, −180…180. Positive = East.
timezonestringYesIANA timezone identifier.
namestringNoNative’s name. Use /vedic/birth-details to retrieve it.
placestringNoBirth place label. Use /vedic/birth-details to retrieve it.
ayanamsastringNoDefault lahiri. Full list →
node_typestringNomean (default) or true.

Response shape

Same structure as /natal/planets — see that page for the full field reference. The only difference is the planets array contains 13 entries (9 Vedic + 4 outer) and total_planets is 13.

Outer planets included

PlanetShortNotes
UranusUrNo Vedic lordship — house_lordship is always [].
NeptuneNeSame baseline fields as Vedic planets.
PlutoPlSame baseline fields as Vedic planets.
ChironChMinor planet / centaur. Same field structure.

Use cases

  • Modern Vedic practice — some astrologers incorporate Uranus, Neptune, and Pluto into sidereal analysis for generational themes.
  • Chiron analysis — the “wounded healer” archetype placed in the sidereal chart.
  • Hybrid charts — overlay outer planets on a traditional Vedic chart for clients familiar with Western astrology.

Errors

HTTPCodeCause
400MISSING_FIELDA required birth field is absent.
400INVALID_DATEInvalid calendar date.
400INVALID_TIMEHour/minute/second out of range.
400INVALID_TIMEZONENumeric or non-IANA timezone.
400INVALID_COORDINATElatitude / longitude out of range.
401AUTH_MISSING_KEYNo API key in request.
401AUTH_INVALID_KEYKey format invalid or not found.
401AUTH_REVOKED_KEYKey has been revoked.
403AUTH_ORIGIN_DENIEDRequest from non-whitelisted origin.
405METHOD_NOT_ALLOWEDNon-POST request.
429RATE_LIMIT_EXCEEDEDPlan quota exceeded.
500CALCULATION_ERROREphemeris calculation failed.

Error response format

{
  "success": false,
  "error": {
    "code": "INVALID_TIMEZONE",
    "message": "Unrecognised timezone: 'Asia/Calcutta_'. Use a valid IANA identifier such as 'Asia/Kolkata'."
  }
}

See also