🌍 Astrocartography API, 🔷 Human Design API and ✋ Palmistry API are now live. Ship them in your app today.

Major Lines

Returns the stored major lines analysis (heart line, head line, life line, fate line) for a given palm reading.
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

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"
    }
  }
}