🕰️ 15+ Muhurta APIs and ✋ Palmistry API are now live. Ship them in your app today.

Career Reading

You must provide a valid palm_id to call this API. How to get Palm ID →
The Career Reading API gives a focused professional and work-direction interpretation for the selected palm_id. The reading is derived from indicators such as the Fate Line, Sun Line, Jupiter and Saturn mounts, Head Line, and finger structure.

Because several palm features are read together, the result can describe professional tendencies, work style, career direction, recognition patterns, and other career-related themes rather than only repeating the condition of one line.

This API converts the stored palm features into one category-specific interpretation centred on work, ambition, progress, and professional direction.
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

Get a career category reading for a previously scanned palm.
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."
    }
  }
}