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

Money Reading

You must provide a valid palm_id to call this API. How to get Palm ID →
The Money Reading API provides the financial interpretation connected with the stored palm. It reads financial themes from indicators such as the Fate Line, Sun Line, and the Mercury and Jupiter mounts.

The response can contain fields such as financial_tendency, wealth_indicators, money_habits, and advice. This separates the person’s general financial style from the specific palm features that support the interpretation.

This API presents money, earning, saving, business sense, recognition-linked income, and financial behaviour as one focused palmistry reading.
POSThttps://vision.astrologyapi.com/palmistry/money

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 money/finance category reading for a previously scanned palm.
curl --location 'https://vision.astrologyapi.com/palmistry/money' \
  --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": {
    "money": {
      "financial_tendency": "Steady earner with a preference for secure, long-term investments",
      "wealth_indicators": [
        "Well-developed Mercury mount suggests good business sense",
        "Clear sun line points to recognition-linked income"
      ],
      "money_habits": [
        "Cautious spender",
        "Prefers saving over speculation"
      ],
      "advice": "Diversify income streams gradually rather than chasing high-risk ventures."
    }
  }
}