Zodiac Planet Number

The Zodiac Planet Number API provides key astrological insights, including zodiac compatibility, ruling planets, and numerology details such as life path, name, and soul urge numbers. Perfect for astrology platforms and apps, this API helps users explore their strengths, challenges, and cosmic connections effortlessly.

POST https://astroapi-7.divineapi.com/numerology/v1/zodiac-planet-number

Returns Zodiac Planet Number in response

Headers

Name
Type
Description

Authorization*

String

your API Access Token

eg: Bearer {token}

Request Body

Name
Type
Description

api_key*

String

your API key

day*

Integer

date of birth, eg: 24

month*

Integer

month of birth, eg: 05

year*

Integer

year of birth, eg: 2023

fname*

String

first name, ex: Rahul

lname

String

last name, ex: kumar

lan

String

Language en/hi, default en

{
    "success": 1,
    "data": {
        "from_date": "22 May ",
        "to_date": "22 June ",
        "zodiac_sign": "Gemini",
        "friend_zodiac": "Libra, Aquarius",
        "enemy_zodiac": "Virgo, Pisces",
        "master_planet": "Mercury",
        "master_number": 5,
        "name_number": 8,
        "birth_day_number": 6,
        "life_path_number": 7,
        "soul_urge_number": 7
    }
}

Take a look at how you might call this method via cURL, NodeJS or JavaScript jQuery AJAX and Python :

curl --location 'https://astroapi-7.divineapi.com/numerology/v1/zodiac-planet-number' \
--header 'Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'day="24"' \
--form 'month="05"' \
--form 'year="2023"' \
--form 'fname="Rahul"' \
--form 'lname="Kumar"' \
--form 'lan="en"'

Last updated