πŸ•°οΈ 15+ Muhurta APIs and βœ‹ Palmistry API are now live. Ship them in your app today.

Health Reading

You must provide a valid face_id to call this API. How to get Face ID β†’
Health Reading API provides a traditional holistic interpretation of vitality and constitution from the stored facial observations. It can consider signs such as eye Shen, complexion, nose bridge, ear structure, and other face-reading indicators.

The response can include `vitality_overview`, `constitution`, `energy_pattern`, a `dosha_tendency`, gentle recommendations, and a summary. A disclaimer is also included because this reading is intended for traditional reflection and is not medical advice or a medical diagnosis.

This API should be presented as a wellness and traditional face-reading interpretation, not as a replacement for professional healthcare.
POSThttps://vision.astrologyapi.com/face-reading/health

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

Get a health category reading for a previously scanned face.
curl --location 'https://vision.astrologyapi.com/face-reading/health' \
  --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": {
    "vitality_overview": "The calm brightness of the Shen in the eyes combined with a healthy luster in the complexion suggests a steady, balanced flow of life energy and a well-rested spirit.",
    "constitution": "A medium, unbroken Health Palace on the nose bridge paired with well-formed ears indicates a naturally stable constitution and a resilient physical foundation.",
    "energy_pattern": "Energy is most concentrated and strong in the overall complexion and eye clarity, while the soft definition of the Ren Zhong suggests a gentle, flowing life force that benefits from mindful pacing.",
    "dosha_tendency": {
      "primary": "Kapha",
      "meaning": "The rounded features, smooth skin, and calm expression suggest a grounding, stable nature with a tendency toward endurance and emotional steadiness."
    },
    "gentle_recommendations": [
      "Incorporate invigorating movement to maintain the natural flow of Qi.",
      "Prioritize consistent sleep routines to support the existing calm clarity of the eyes."
    ],
    "disclaimer": "This is a traditional holistic interpretation for reflection only and is not medical advice. For any health concern, please consult a qualified professional.",
    "summary": "You possess a harmonious and stable energy profile, reflecting a balanced inner state. Your features suggest a sturdy constitution that is well-supported by a calm and observant mind."
  }
}