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

Special Features

You must provide a valid palm_id to call this API. How to get Palm ID β†’
The Special Features API returns distinctive marks and unusual traits detected on the palm linked with the palm_id. These can include marks such as stars, crosses, squares, triangles, circles, and other notable formations.

The response separates visible marks from broader unique_traits. A mark can include both its type and location, such as a star on the Mount of Jupiter, while unique traits can describe a notable line characteristic.

This API adds the exception layer of the palm analysis. It highlights features that do not belong only to hand shape, standard lines, fingers, or mounts and gives the reading a more detailed palmistry profile.
POSThttps://vision.astrologyapi.com/palmistry/special-features

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 special marks and unique traits identified on a previously scanned palm.
curl --location 'https://vision.astrologyapi.com/palmistry/special-features' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "palm_id": "c48d0b00-1d49-4af8-8c05-e778b3d7a00f"
}'
Try it

Runs with sample data β€” no API key needed

{
  "status": true,
  "data": {
    "marks": [
      {
        "type": "star",
        "location": "mount of jupiter"
      }
    ],
    "unique_traits": [
      "deep set heart line"
    ]
  }
}