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

Marriage Reading

You must provide a valid palm_id to call this API. How to get Palm ID →
The Marriage Reading API gives a partnership-focused interpretation based on the stored Marriage Lines, Heart Line, and Venus mount. It studies committed-relationship themes separately from the broader emotional reading returned by the Love API.

The response can contain timing_indicators, quality_outlook, and partnership_notes. These fields organise the reading around commitment patterns, relationship quality, and traditional timing indications visible in the palm.

This API adds a more focused reading for commitment and partnership after the general emotional nature has been covered by the Love API.
POSThttps://vision.astrologyapi.com/palmistry/marriage

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

Get a marriage category reading for a previously scanned palm.
curl --location 'https://vision.astrologyapi.com/palmistry/marriage' \
  --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": {
      "timing_indicators": "A clear single marriage line suggests a significant committed relationship in the mid-to-late twenties",
      "quality_outlook": "Stable and harmonious, built on mutual trust",
      "partnership_notes": [
        "Strong Venus mount indicates affectionate, supportive partnerships",
        "Clear line quality suggests few major disruptions"
      ]
    }
  }
}