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

Nose

You must provide a valid face_id to call this API. How to get Face ID β†’
Nose API returns structured observations about the length, width, bridge, tip, wings, and nostrils of the nose. It separates the feature into specific areas so the application can work with detailed facial information instead of only a general nose shape.

The response can include `length`, `width`, `bridge_health_palace`, `tip_wealth_star`, `wings_wealth_palace`, and `nostrils`. These names reflect traditional face-reading concepts where different parts of the nose are connected with themes such as vitality, resources, and the Wealth Palace.

This API provides important source data for wealth, career, health, stability, and life-resource interpretations.
POSThttps://vision.astrologyapi.com/face-reading/nose

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 nose details for a stored face reading.
curl --location 'https://vision.astrologyapi.com/face-reading/nose' \
  --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": {
    "length": "medium",
    "width": "medium",
    "bridge_health_palace": "medium",
    "tip_wealth_star": "rounded",
    "wings_wealth_palace": "moderate",
    "nostrils": "moderate"
  }
}