🕰️ 15+ Muhurta APIs and ✋ Palmistry API are now live. Ship them in your app today.

Personality Reading

You must provide a valid palm_id to call this API. How to get Palm ID →
The Personality Reading API creates a structured personality interpretation from the stored hand shape, elemental hand type, Head Line, and finger features. It combines several physical palm indicators instead of relying on one line alone.

The response includes areas such as core_traits, behavioral_style, and strengths. This gives a readable summary of the person’s general nature, working style, and recurring personal qualities according to the palm reading.

This is the broad character-reading layer of the Palmistry API. It converts the structural palm analysis into a simple personality analysis.
POSThttps://vision.astrologyapi.com/palmistry/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

palm_idstringrequired

Unique palm reading ID returned by get-palm-id

Get a personality category reading for a previously scanned palm.
curl --location 'https://vision.astrologyapi.com/palmistry/personality' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "palm_id": "c48d0b80-1d49-4af8-8c05-e778b3d7a00f"
}'
Try it

Runs with sample data — no API key needed

{
  "status": true,
  "data": {
    "personality": {
      "core_traits": [
        "Practical and grounded",
        "Independent thinker",
        "Reliable under pressure"
      ],
      "behavioral_style": "Methodical and detail-oriented, prefers structured environments",
      "strengths": [
        "Strong focus",
        "Loyalty",
        "Patience"
      ]
    }
  }
}