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

Vastu Remedies

The Remedies API tells the user what can be done after a Vastu issue is found. It connects each remedy with the related room or fixture and explains the current Vastu impact before giving the correction.

Important fields include affected_life_areas, what_to_do, why_it_helps, effort_level, and review_guidance. The remedy can be a simple adjustment, a change in room use, a fixture movement, or a structural recommendation for future renovation.

This API turns the Vastu analysis into a practical correction plan.
POSThttps://vision.astrologyapi.com/vastu/remedies

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

vastu_idstringrequired

Unique Vastu ID returned by get-vastu-id

curl --location 'https://vision.astrologyapi.com/vastu/remedies' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "vastu_id": "vst_50c7a7d9695346f5"
}'
Try it

Runs with sample data — no API key needed

{
  "vastu_id": "vst_50c7a7d9695346f5",
  "remedies": [
    {
      "display_name": "Kitchen",
      "category": "room",
      "catalog_type": "kitchen",
      "current_impact": "Your kitchen is in the south-west. The heaviest heat in the house sits in the corner that keeps you steady. Friction between partners will rise over small things. Money will pass through without settling.",
      "affected_life_areas": [
        "Relationships",
        "Money"
      ],
      "what_to_do": "Fit a green marble slab under the stove. Keep the room's own south-west corner heavy and full. Move the kitchen to the south-east during any rebuild.",
      "why_it_helps": "This corner needs weight and stillness, and a working kitchen gives it neither. The slab settles the flame itself. Loading the heavy corner puts back the mass the room is missing.",
      "effort_level": "moderate",
      "review_guidance": "Review at 45 days"
    },
    {
      "display_name": "Bedroom 1",
      "category": "room",
      "catalog_type": "master_bedroom",
      "current_impact": "Your main bedroom is in the north-east. That corner should stay light and open, and a bedroom fills it. You will wake without feeling rested. Your authority at home will feel weaker than it is.",
      "affected_life_areas": [
        "Sleep",
        "Career"
      ],
      "what_to_do": "Swap with a room in the south-west if the layout allows. Where it cannot change, keep the room sparse, paint it off-white. Put the bed in the room's own south-west corner.",
      "why_it_helps": "This corner has to stay the lightest part of the home. The head of the household settles best in the heaviest corner. Where the room cannot move, the bed within it still can.",
      "effort_level": "moderate",
      "review_guidance": "Review at 45 days"
    },
    {
      "display_name": "Bath",
      "category": "room",
      "catalog_type": "bathroom",
      "current_impact": "Your bathroom is in the fire corner. Water and flame are sharing one spot. Plumbing and appliance trouble will come round more often than average. Repair bills will run higher than you expect.",
      "affected_life_areas": [
        "Money"
      ],
      "what_to_do": "Move it to the north-west during any rebuild. Where it stays, fix a copper strip around the pan, keep the room dry. Fix any leak within the week.",
      "why_it_helps": "Water sitting in the fire corner is a direct clash. Copper is the metal that belongs to this side. The strip settles the fitting without moving the room.",
      "effort_level": "easy",
      "review_guidance": "Review at 45 days"
    },
    {
      "display_name": "Study",
      "category": "room",
      "catalog_type": "study",
      "current_impact": "Your study is in the fire corner. You will study in bursts rather than steadily. Long sessions will be hard to sustain. What you learn will fade faster than it should.",
      "affected_life_areas": [
        "Study"
      ],
      "what_to_do": "Move the desk to the west or north-east of the home when you can. Where the room stays, put the desk on the room's west side. Face east while working.",
      "why_it_helps": "The fire corner starts things and does not hold them. The west is the side that keeps what you learn. That is why a desk belongs there.",
      "effort_level": "easy",
      "review_guidance": "Review at 45 days"
    },
    {
      "display_name": "Bed in Bedroom 1",
      "category": "fixture",
      "catalog_type": "bed",
      "current_impact": "Your bed sits in the east part of the room. The east carries the first light of the day, which works against long sleep.",
      "affected_life_areas": [
        "Home life"
      ],
      "what_to_do": "Move the bed to the south or west part of the room. If it cannot move, put the head end against the south or west wall.",
      "why_it_helps": "Sleep wants the heavy, dark side of a room. Moving the bed is the whole correction.",
      "effort_level": "easy",
      "review_guidance": "Review at 45 days"
    }
  ]
}