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

Major Lines

You must provide a valid palm_id to call this API. How to get Palm ID β†’
The Major Lines API returns the main palm lines detected for the palm_id. It covers the Heart Line, Head Line, Life Line, and Fate Line, which are the central lines used in most palmistry readings.

The response can describe properties such as shape, depth, starting_point, quality, line presence, origin, and features such as a fork where available. This keeps the response structured instead of returning only a general interpretation.

These four lines create the main reading framework: the Heart Line relates to emotional patterns, the Head Line to thinking style, the Life Line to vitality and life-force symbolism, and the Fate Line to direction, work, and broader life-path themes within palmistry.
POSThttps://vision.astrologyapi.com/palmistry/major-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 heart, head, life and fate line details for a previously scanned palm.
curl --location 'https://vision.astrologyapi.com/palmistry/major-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": {
    "heart_line": {
      "shape": "curved",
      "depth": "deep",
      "starting_point": "below index finger",
      "quality": "clear"
    },
    "head_line": {
      "shape": "straight",
      "depth": "medium",
      "starting_point": "between thumb and index"
    },
    "life_line": {
      "shape": "wide curve",
      "depth": "deep",
      "quality": "clear",
      "fork": "absent"
    },
    "fate_line": {
      "presence": "present",
      "origin": "wrist"
    }
  }
}