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

Basic Vastu Remedies

The Basic Remedies API gives practical corrective guidance for the direction-based placements submitted by the user. It can explain the current impact, affected life areas, what to do, and why the correction is recommended.

The response also gives effort_level and review_guidance. This helps you separate easy changes from moderate or structural corrections, which is useful for both homeowners and rental-home users.

This API provides the action plan for the Basic Vastu form flow. It converts the submitted room and feature directions into practical corrective guidance without image analysis or a full Vastu Mandala calculation.
POSThttps://vision.astrologyapi.com/vastu/basic-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

main_entrancestringrequired

Confirmed main-entrance direction.

roomsarrayrequired

One to fifty confirmed room type and direction pairs.

contextobject

Optional agency and concern context.

The Basic APIs accept a fixed set of room types. The supported room values are: kitchen, master_bedroom, puja_room, toilet, bathroom, living_room, dining_room, staircase, storage, bedroom, kids_bedroom, guest_bedroom, study, office, foyer, gym, home_theatre, pantry, laundry, powder_room, servant_room, granary, treasury, lift, parking, balcony, verandah, terrace, garden, courtyard, and pool. Only these room types are supported in the Basic room input.

The context object adds practical information about the property and the user’s main concern. context.agency accepts exactly four values: OWN_CAN_REBUILD, OWN_CANNOT_REBUILD, RENT, and UNKNOWN. context.concern accepts exactly seven values: MONEY, HEALTH, HOME, WORK, MOOD, NONE, and UNKNOWN.
curl --location 'https://vision.astrologyapi.com/vastu/basic-remedies' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "main_entrance": "N",
    "rooms": [
        {
            "type": "kitchen",
            "direction": "SW"
        },
        {
            "type": "master_bedroom",
            "direction": "NE"
        },
        {
            "type": "verandah",
            "direction": "SW"
        },
        {
            "type": "treasury",
            "direction": "SW"
        }
    ],
    "context": {
        "agency": "RENT",
        "concern": "NONE"
    }
}'
Try it

Runs with sample data — no API key needed

{
  "remedies": [
    {
      "display_name": "Treasury",
      "category": "room",
      "catalog_type": "treasury",
      "current_impact": "Your safe is in the south-west. Money will go in and sit there. Savings will stay idle instead of growing into anything. You will find yourself dipping into them for things you had not planned.",
      "affected_life_areas": [
        "Money"
      ],
      "what_to_do": "Move the safe to the north of the home. Set it so the door opens facing north. Keep the corner around it clean and store nothing on top of it.",
      "why_it_helps": "The north is the corner that holds and grows money. A safe opening north draws from it. Moving a safe costs nothing and takes an afternoon.",
      "effort_level": "easy",
      "review_guidance": "Review at 45 days"
    },
    {
      "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": "Master bedroom",
      "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": "Verandah",
      "category": "room",
      "catalog_type": "verandah",
      "current_impact": "Your verandah opens off the heaviest corner of your home. Open space is sitting where the plan wanted solid weight. Stability at home will feel less firm than it looks. Money will not stay where you put it.",
      "affected_life_areas": [
        "Relationships",
        "Money"
      ],
      "what_to_do": "Close the verandah in during any renovation, or make it a solid store. Until then keep heavy stone or clay pots along its outer edge. A screen across the opening.",
      "why_it_helps": "This corner has to carry weight. An open verandah takes that weight away. Heavy pots and a screen put back what the opening removed, without any building work.",
      "effort_level": "moderate",
      "review_guidance": "Review at 45 days"
    }
  ]
}