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

Personality Number

This API provides a report on an individual's personality number based on their birth date. The report includes insights on the individual's level of confidence, sensitivity, and ways to improve their ability to project themselves confidently in public.
POSThttps://json.astrologyapi.com/v1/personality_number

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

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/personality_number' \
  --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",
  "personality_number": 11,
  "report": [
    "With a Personality number 11, you don’t seem to be extremely confident of oneself. No wonder, being in the limelight makes you uncomfortable. You have grown up to be a nervous individual and little things can easily break your confidence. Only learning to deal with your anxiety could instill confidence in you. You are extremely sensitive at heart. You give more importance and attention to others and if you don’t take care of this trait, their views and opinions could easily hurt you. It is important that you work on your sensitive, gentler side especially when dealing with ruthless, rude people. You need to safeguard yourself and not let your vulnerability wreck you down emotionally. Only with practise and over a period of time, you will be able to project yourself confidently in the public domain."
  ]
}