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

Love Reading

Returns a detailed love/romance reading derived from the heart line and Venus mount.
POSThttps://vision.astrologyapi.com/palmistry/love

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/love' \
  --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": {
    "love": {
      "emotional_nature": "Warm and affectionate, forms deep emotional bonds",
      "romantic_style": "Loyal and committed once invested in a relationship",
      "compatibility_notes": [
        "Pairs well with partners who value stability",
        "Needs reassurance and open communication"
      ]
    }
  }
}