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

Hand Type

You must provide a valid palm_id to call this API. How to get Palm ID β†’
The Hand Type API explains the overall form and elemental character of the hand stored under the palm_id. It returns details such as palm shape, associated element, skin_texture, and elasticity.

In traditional palmistry, the hand shape forms the broad foundation of the reading. An elemental classification such as Earth helps describe the general nature of the hand before individual lines and mounts are studied in detail.

This API forms the first structural layer of the palm reading. It gives a concise hand-profile section that can sit before the deeper line, finger, and mount analysis.
POSThttps://vision.astrologyapi.com/palmistry/hand-type

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 the hand shape and element details for a previously scanned palm.
curl --location 'https://vision.astrologyapi.com/palmistry/hand-type' \
  --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": {
    "shape": "square",
    "element": "Earth",
    "skin_texture": "smooth",
    "elasticity": "flexible"
  }
}