Skip to content

House-planet relations

Catalogs every way a planet connects to a house in the chart — occupation, ownership, aspect, dispositor chains, navamsa link, nakshatra-lord link, sambandha with the house lord. Each relation carries a strength so they can be aggregated into a per-house influence score.

Ten relation types

Type Max strength Meaning
occupation 60 Planet physically sits in the house.
mooltrikona_ownership 55 Planet rules the house through its mooltrikona sign.
ownership 50 Planet rules the sign on the house.
aspect_to_cusp 40 Planet casts a drishti onto the house cusp.
aspect_to_occupant 35 Planet aspects another planet sitting in the house.
dispositor_placement 30 The planet's own dispositor sits in the house.
sambandha_connection up to 30 Planet has a sambandha with the house lord.
navamsa_dispositor_placement 25 The planet's navamsa-dispositor sits in the house.
navamsa_sign_placement 20 The planet's D9 sign matches the sign on the house.
nakshatra_lord_placement 15 The planet's nakshatra-lord sits in the house.

GET /v1/vedic/charts/{id}/house-relations/planet/{planet}

Every relation linking one planet to all twelve houses.

curl -H "Authorization: Bearer $TOKEN" \
  "https://api.astrolinkers.com/v1/vedic/charts/$CHART/house-relations/planet/jupiter"
{
  "chart_id": "01HKD…",
  "planet": "jupiter",
  "relations": [
    {
      "planet": "jupiter",
      "house_number": 5,
      "relation_type": "occupation",
      "strength": 60.0,
      "explanation": "jupiter occupies house 5 (sign leo)"
    },
    {
      "planet": "jupiter",
      "house_number": 9,
      "relation_type": "ownership",
      "strength": 50.0,
      "explanation": "jupiter owns house 9 (sagittarius)"
    },
    {
      "planet": "jupiter",
      "house_number": 12,
      "relation_type": "ownership",
      "strength": 50.0,
      "explanation": "jupiter owns house 12 (pisces)"
    }
  ]
}

GET /v1/vedic/charts/{id}/house-relations/house/{house_number}

The inverse view — every relation any planet has with one specific house. house_number is path-validated to 1..12.

curl -H "Authorization: Bearer $TOKEN" \
  "https://api.astrolinkers.com/v1/vedic/charts/$CHART/house-relations/house/10"
{
  "chart_id": "01HKD…",
  "house_number": 10,
  "relations": [
    {"planet": "saturn", "house_number": 10, "relation_type": "occupation",
     "strength": 60.0, "explanation": "saturn occupies house 10 (sign capricorn)"},
    {"planet": "saturn", "house_number": 10, "relation_type": "mooltrikona_ownership",
     "strength": 55.0, "explanation": "saturn owns house 10 (capricorn) via its mooltrikona sign"},
    {"planet": "sun", "house_number": 10, "relation_type": "aspect_to_occupant",
     "strength": 35.0, "explanation": "sun aspects saturn sitting in house 10"}
  ]
}

How to aggregate

A house with planets summing to > 200 across all relation types is strongly activated. The fast triage rule of thumb:

Total strength Reading
> 200 Densely activated — many strong ties.
100-200 Moderately activated.
< 100 Weakly activated.

Whole-sign houses are used; the orb-to-cusp modulation of the astrolink reference is collapsed to a fixed 60 Virupa for occupation so the math is reproducible.