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

Health Reading

Generates a health reading from the stored face-reading features.
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

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."
  }
}