🌍 Astrocartography API, 🔷 Human Design API and ✋ Palmistry API are now live. Ship them in your app today.

Solar Return Details

The solar_return_details API provides information about the solar return date for an individual based on their birth date and time. The response includes the native's birth date and time, their age at the time of the solar return, and the solar return date and time.
POSThttps://json.astrologyapi.com/v1/solar_return_details

Authentication

x-astrologyapi-keystringrequired

API access token used to authenticate requests. Send your access token in this custom header.

Accept-Languagestring

Preferred language for the response content. Supported: English - en.

Body parameters

dayintrequired

Date of birth, eg: 10

monthintrequired

Month of birth, eg: 5

yearintrequired

Year of birth, eg: 1990

hourintrequired

Hour of birth, eg: 19

minintrequired

Minute of birth, eg: 55

latfloatrequired

Latitude, eg: 19.2056

lonfloatrequired

Longitude, eg: 25.2056

tzonefloatrequired

Timezone, eg: 5.5

solar_yearintrequired

Solar Year, eg: 2025

house_typestring

Default : "placidus" // koch/topocentric/poryphry/equal_house/whole_sign

curl --location 'https://json.astrologyapi.com/v1/solar_return_details' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "day": 10,
    "month": 5,
    "year": 1990,
    "hour": 19,
    "min": 55,
    "lat": 19.2056,
    "lon": 25.2056,
    "tzone": 5.5,
    "solar_year": 2025,
    "house_type": 2025
}'
Try it

Runs with sample data — no API key needed

{
  "native_birth_date": "05-15-2011 12:10:00",
  "native_age": null,
  "solar_return_date": "05-15-2018 05:09:35"
}