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

Mouth

You must provide a valid face_id to call this API. How to get Face ID →
Mouth API returns detailed observations about the lips and overall mouth structure. It can describe the mouth size, upper lip, lower lip, overall definition, mouth corners, and symmetry.

The response can contain fields such as `size`, `upper_lip`, `lower_lip`, `shape`, `corners`, and `symmetry`. These details provide structured information for traditional interpretations connected with communication, affection, emotional expression, generosity, and relationship style.

Mouth observations are used heavily in love, marriage, personality, family, and emotional readings.
POSThttps://vision.astrologyapi.com/face-reading/mouth

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

Fetch mouth details for a stored face reading.
curl --location 'https://vision.astrologyapi.com/face-reading/mouth' \
  --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": {
    "size": "medium",
    "upper_lip": "balanced",
    "lower_lip": "full",
    "shape": "well-defined",
    "corners": "neutral",
    "symmetry": "symmetrical"
  }
}