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

Numerological Numbers

This API numerological_numbers calculates numerological numbers based on a person's name and birthdate. The response includes lifepath_number, personality_number, expression_number, soul_urge_number, subconscious_self_number, and challenge_numbers.
POSThttps://json.astrologyapi.com/v1/numerological_numbers

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

dateintrequired

Date of birth, eg: 10

monthintrequired

Month of birth, eg: 5

yearintrequired

Year of birth, eg: 1990

full_namestringrequired

Name of the person, eg: John

curl --location 'https://json.astrologyapi.com/v1/numerological_numbers' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "date": 10,
    "month": 5,
    "year": 1990,
    "full_name": "John"
}'
Try it

Runs with sample data — no API key needed

{
  "name": "Ajeet kanojia",
  "birth_date": "2011-5-15",
  "lifepath_number": 6,
  "personality_number": 11,
  "expression_number": 11,
  "soul_urge_number": 1,
  "subconscious_self_number": 5,
  "challenge_numbers": [
    1,
    2,
    1,
    1
  ]
}