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

Mounts

You must provide a valid palm_id to call this API. How to get Palm ID β†’
The Mounts API analyses the raised areas of the palm linked with traditional planetary symbolism. For the selected palm_id, it returns the prominence of mounts such as Venus, Jupiter, Saturn, Apollo, Mercury, and Luna.

Each mount can be described with a prominence level such as developed, normal, or flat. In palmistry, these mount conditions act as supporting indicators for themes such as affection, ambition, discipline, expression, communication, imagination, and emotional sensitivity.

This API gives the planetary-mount layer of the palm profile. Its data also supports category readings such as career, money, love, and marriage, where line patterns are interpreted together with the relevant mounts.
POSThttps://vision.astrologyapi.com/palmistry/mounts

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

palm_idstringrequired

Unique palm reading ID returned by get-palm-id

Fetch prominence levels of each palm mount for a previously scanned palm.
curl --location 'https://vision.astrologyapi.com/palmistry/mounts' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "palm_id": "c48d0b80-1d49-4af8-8c05-e778b3d7a00f"
}'
Try it

Runs with sample data β€” no API key needed

{
  "status": true,
  "data": {
    "venus": {
      "prominence": "developed"
    },
    "jupiter": {
      "prominence": "normal"
    },
    "saturn": {
      "prominence": "flat"
    },
    "apollo": {
      "prominence": "normal"
    },
    "mercury": {
      "prominence": "developed"
    },
    "luna": {
      "prominence": "normal"
    }
  }
}