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

Challenges Reading

You must provide a valid face_id to call this API. How to get Face ID β†’
Challenges Reading API focuses on possible pressure points, recurring patterns, and areas of personal development shown through the stored face-reading features. It is structured as a growth-oriented reading rather than only giving positive trait descriptions.

The response can contain an overview and a list of `growth_areas`. Individual growth areas can include the area name, the facial feature used as its basis, the interpreted challenge, and a practical `path_forward`.
POSThttps://vision.astrologyapi.com/face-reading/challenges

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 challenges category reading for a previously scanned face.
curl --location 'https://vision.astrologyapi.com/face-reading/challenges' \
  --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": {
    "overview": "Your facial architecture suggests a naturally harmonious foundation, where growth lies in transitioning from stability to active expansion.",
    "growth_areas": [
      {
        "area": "Mental Clarity",
        "feature_basis": "life_palace_yin_tang",
        "challenge": "A smooth-bright Life Palace indicates a clear start, but a tendency toward perfectionism can lead to overthinking before taking action.",
        "path_forward": "Practice 'imperfect action' by setting short deadlines to prevent analysis paralysis."
      },
      {
        "area": "Emotional Expression",
        "feature_basis": "mouth",
        "challenge": "With neutral corners and a balanced shape, there may be a tendency to keep emotions internalized to maintain a composed exterior.",
        "path_forward": "Cultivate vulnerability by sharing small, honest feelings with trusted peers to deepen connections."
      },
      {
        "area": "Social Adaptability",
        "feature_basis": "eyebrows_siblings_palace",
        "challenge": "Straight, neat eyebrows suggest a disciplined mind, which can sometimes be perceived as rigidity in collaborative settings.",
        "path_forward": "Embrace flexible thinking and active listening to integrate diverse perspectives into your structured approach."
      }
    ],
    "inner_tension": "The high level of overall symmetry suggests a strong internal drive for balance, which may create a tension between the desire for safety and the need for risk.",
    "watch_outs": [
      "Avoid over-relying on logic at the expense of intuition",
      "Beware of stagnation caused by waiting for the 'perfect' moment"
    ],
    "your_advantage": "The balanced fullness of your travel palace and cheekbones provides a resilient energy reserve, allowing you to sustain effort during periods of growth.",
    "summary": "You possess a rare structural balance that serves as a powerful springboard for personal evolution. By leaning into emotional openness and flexible action, you can transform your natural stability into dynamic success."
  }
}