🕰️ 15+ Muhurta APIs and ✋ Palmistry API are now live. Ship them in your app today.

Minor Lines

You must provide a valid palm_id to call this API. How to get Palm ID →
The Minor Lines API gives the secondary line analysis stored for the palm_id. It extends the reading beyond the four major lines and includes details such as Marriage Lines, Children Lines, and the Sun Line.

The response can include the number, depth, quality, or presence of these lines depending on what the scan identifies. These indicators add finer detail to relationship, family, recognition, creativity, and achievement themes.

This API gives the second line-analysis layer. Major Lines establish the core reading, while Minor Lines add more specific supporting observations around the person’s palm pattern.
POSThttps://vision.astrologyapi.com/palmistry/minor-lines

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 marriage, children and sun line details for a previously scanned palm.
curl --location 'https://vision.astrologyapi.com/palmistry/minor-lines' \
  --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": {
    "marriage_lines": {
      "number": "1",
      "depth": "deep",
      "quality": "clear"
    },
    "children_lines": {
      "number": "2"
    },
    "sun_line": {
      "presence": "yes"
    }
  }
}