šŸ•°ļø 15+ Muhurta APIs and āœ‹ Palmistry API are now live. Ship them in your app today.

Fingers

You must provide a valid palm_id to call this API. How to get Palm ID →
The Fingers API returns the stored analysis of finger structure for the selected palm_id. The analysis covers general finger length and spacing, giving a structured view of how the fingers appear in relation to the palm.

Finger proportion and spacing are supporting indicators in palmistry. They add detail to the hand type and help complete the physical profile before the interpretive readings are produced.

This API adds the finger-analysis and works together with Hand Type, Major Lines, Minor Lines, Mounts, and Special Features to build the complete palm structure.
POSThttps://vision.astrologyapi.com/palmistry/fingers

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 finger length and spacing details for a previously scanned palm.
curl --location 'https://vision.astrologyapi.com/palmistry/fingers' \
  --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": {
    "general_length": "medium",
    "spacing": "normal"
  }
}