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

Career Reading

Returns a detailed career reading derived from the fate line, sun line, Jupiter/Saturn mounts, head line and fingers.
POSThttps://vision.astrologyapi.com/palmistry/career

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/career' \
  --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": {
    "career": {
      "career_direction": "entrepreneurship - strong, independent fate line rising from the wrist",
      "professional_strengths": [
        "Natural leadership (well-developed Jupiter mount)",
        "Practical execution (square hand, Earth element)",
        "Disciplined and reliable (deep, straight head line)",
        "Resilience under pressure",
        "Good with structured, long-term goals"
      ],
      "suitable_professions": [
        "Business owner / founder",
        "Operations manager",
        "Engineer",
        "Architect",
        "Financial planner",
        "Civil services",
        "Real estate"
      ],
      "growth_advice": "Lean into long-term ventures; avoid frequent career switches."
    }
  }
}