🌍 Astrocartography API and βœ‹ Palmistry API are now live. Ship them in your app today.Get Started

Planets Tropical

The planets/tropical API returns the current positions of the celestial bodies in the tropical zodiac system. The response includes the name of the planet, its degree in the zodiac, its speed, retrograde status, zodiac sign, and the house it is in. The response contains data for the Sun, Moon, Mars, Mercury, Jupiter, Venus, Saturn, Rahu, Ketu, Uranus, and the Ascendant.
POSThttps://json.astrologyapi.com/v1/planets/tropical

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, Spanish - es, Portuguese - pt, French - fr, Italian - it, German - de, Russian - ru.

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

house_typestringrequired

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

curl --location 'https://json.astrologyapi.com/v1/planets/tropical' \
  --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,
    "house_type": "placidus"
}'
Try it

Runs with sample data β€” no API key needed

[
  {
    "name": "Sun",
    "fullDegree": 259.3692854715937,
    "normDegree": 19.369285471593685,
    "speed": 1.0163786145803477,
    "isRetro": "false",
    "sign": "Sagittarius",
    "house": 11
  },
  {
    "name": "Moon",
    "fullDegree": 113.01532109301493,
    "normDegree": 23.015321093014933,
    "speed": 13.422889565180862,
    "isRetro": "false",
    "sign": "Cancer",
    "house": 7
  },
  {
    "name": "Mars",
    "fullDegree": 319.2803341423472,
    "normDegree": 19.280334142347215,
    "speed": 0.7621766783897992,
    "isRetro": "false",
    "sign": "Aquarius",
    "house": 1
  },
  {
    "name": "Mercury",
    "fullDegree": 267.157142291648,
    "normDegree": 27.157142291647972,
    "speed": -1.129353838866472,
    "isRetro": "true",
    "sign": "Sagittarius",
    "house": 12
  },
  {
    "name": "Jupiter",
    "fullDegree": 286.74844079893995,
    "normDegree": 16.748440798939953,
    "speed": 0.21989257845513263,
    "isRetro": "false",
    "sign": "Capricorn",
    "house": 12
  },
  {
    "name": "Venus",
    "fullDegree": 302.46109957231073,
    "normDegree": 2.4610995723107294,
    "speed": 1.1733155507134867,
    "isRetro": "false",
    "sign": "Aquarius",
    "house": 1
  },
  {
    "name": "Saturn",
    "fullDegree": 232.5728863112664,
    "normDegree": 22.572886311266387,
    "speed": 0.1112696563244877,
    "isRetro": "false",
    "sign": "Scorpio",
    "house": 10
  },
  {
    "name": "Uranus",
    "fullDegree": 254.1300701628793,
    "normDegree": 14.130070162879292,
    "speed": 0.06114507772452163,
    "isRetro": "false",
    "sign": "Sagittarius",
    "house": 11
  },
  {
    "name": "Neptune",
    "fullDegree": 270.70233881243786,
    "normDegree": 0.7023388124378585,
    "speed": 0.037269287688777034,
    "isRetro": "false",
    "sign": "Capricorn",
    "house": 12
  },
  {
    "name": "Pluto",
    "fullDegree": 213.81656661729093,
    "normDegree": 3.816566617290931,
    "speed": 0.030884363476755057,
    "isRetro": "false",
    "sign": "Scorpio",
    "house": 9
  },
  {
    "name": "Ascendant",
    "fullDegree": 288.3761917494198,
    "normDegree": 18.376191749419775,
    "speed": 0,
    "isRetro": "false",
    "sign": "Capricorn",
    "house": 1
  }
]