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

Personality Reading

Generates a personality reading from the stored face-reading features.
POSThttps://vision.astrologyapi.com/face-reading/personality

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

face_idstringrequired

Unique face reading ID returned by get-face-id

curl --location 'https://vision.astrologyapi.com/face-reading/personality' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "face_id": "c48d0b80-1d49-4af8-8c05-e778b3d7a00f"
}'
Try it

Runs with sample data — no API key needed

{
  "status": true,
  "data": {
    "essence": "A grounded and observant individual who balances a growth-oriented mindset with a strong capacity for endurance and practical execution.",
    "five_element_nature": {
      "element": "wood",
      "meaning": "The oblong face shape suggests a Wood temperament, manifesting as a natural drive for growth, benevolence, and a structured approach to progress."
    },
    "core_traits": [
      {
        "trait": "Pragmatic Endurance",
        "feature_basis": "lower court",
        "in_life": "With a dominant lower court, they possess great stamina and a focus on the tangible results of their efforts in the later stages of projects."
      },
      {
        "trait": "Calm Discernment",
        "feature_basis": "eyes (shen)",
        "in_life": "Their calm brightness and observant expression allow them to process information objectively before reacting."
      },
      {
        "trait": "Disciplined Drive",
        "feature_basis": "eyebrows",
        "in_life": "Neat-flowing, straight eyebrows indicate a steady, organized ambition and a temperament that avoids erratic emotional swings."
      },
      {
        "trait": "Sensual Communication",
        "feature_basis": "mouth (lower lip)",
        "in_life": "A full lower lip suggests a capacity for empathy and a generous, nurturing way of expressing affection and support."
      }
    ],
    "social_presence": "They appear as a poised and attentive listener, combining the observant nature of their almond eyes with a balanced, symmetrical mouth that suggests reliability.",
    "inner_vs_outer": "The high level of overall symmetry and calm Shen indicates a rare alignment between their internal values and external behavior, suggesting an authentic and transparent persona.",
    "summary": "This person is a steady anchor who blends the visionary growth of Wood with the practical persistence of a strong lower court. They are characterized by an inner stillness and a disciplined approach to life's challenges."
  }
}