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

Wisdom Reading

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

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/wisdom' \
  --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": {
    "thinking_style": "Pragmatic and grounded; the low, rounded forehead indicates a mind that favors immediate application and practical results over abstract theorizing.",
    "intuition_vs_logic": "A harmonious balance; the smooth Yin Tang suggests openness to intuition, while the almond-shaped eyes provide a logical, observant filter.",
    "perception": "Deeply observant and measured; the calm Shen brightness and clear whites indicate a high capacity for reading situations without being clouded by emotional bias.",
    "learning_style": "Experiential and auditory; mid-set ears with well-formed rims suggest a strong ability to listen and absorb information, while the forehead indicates learning through doing.",
    "mental_clarity": "High stability; the smooth-bright condition of the Yin Tang suggests a mind free from chronic congestion or mental turmoil, allowing for clear decision-making.",
    "life_lessons": [
      "Developing long-term vision and strategic patience to balance the immediate focus of the low forehead.",
      "Cultivating deeper emotional openness to complement the detached, observant nature of the eyes."
    ],
    "summary": "A mind characterized by practical intelligence and a serene, observant nature. They possess the rare ability to remain mentally clear under pressure, processing the world through a lens of grounded realism and attentive listening."
  }
}