AstroWay/api v2.130.2 · ko
모든 시스템 정상 작동 중
// astrology api · POST /v1/almuten

Almuten Figuris API

The almuten figuris is the traditional answer to a question the modern chart avoids: which single planet has the strongest claim over this nativity. It is decided by counting dignity across the key places of the chart and taking the winner, and the endpoint returns both the winner and the full tally.

Endpoint
POST /v1/almuten
Cost
20 credits
Latency
~48 ms
Tier
Tier 2
// 01 / What it computes

Almuten Figuris API

The endpoint builds the natal chart and scores every one of the seven classical planets by the essential dignity it holds over the decisive positions of the figure. Each planet accumulates points where it rules by domicile, exaltation, triplicity, term and face, and the totals are compared. The response gives the winning planet, its score, and the score of all seven so you can see how close the contest was, alongside the chart the scoring was done on. In the sample nativity Venus wins with 23 against Mercury and Saturn tied on 14, so the verdict is comfortable rather than marginal, and that distinction is visible in the payload rather than hidden behind a single name. Because the calculation leans on the ascendant, the birth time matters more here than for a Sun-sign feature: a shift of a few minutes can move the ascendant into another term and change the tally.

// 02 / Live request

POST/v1/almuten

curl -X POST https://api.astroway.info/v1/almuten \
  -H "X-Api-Key: aw_live_..." \
  -H "Content-Type: application/json" \
  -d '{
  "date": "1990-05-15",
  "time": "14:30:00",
  "timezoneOffset": 3,
  "latitude": 50.45,
  "longitude": 30.52,
  "houseSystem": "P"
}'
Response (excerpt)
{
  "ok": true,
  "data": {
    "almuten": {
      "planet": "Venus",
      "score": 23,
      "scores": {
        "Sun": 1, "Moon": 8, "Mercury": 14, "Venus": 23,
        "Mars": 9, "Jupiter": 2, "Saturn": 14
      }
    },
    "chart": { "planets": [], "houses": {} }
  }
}
// 03 / Parameters

Parameters

nametypeRequired
date string (YYYY-MM-DD) yes Birth date.
time string (HH:MM:SS) yes Local clock time at birth. The almuten depends on the ascendant, so an accurate time matters here.
timezoneOffset number (hours) yes UTC offset in effect at the birth moment.
latitude number yes Birth-place latitude, decimal degrees (north positive).
longitude number yes Birth-place longitude, decimal degrees (east positive).
houseSystem string no House system code, P for Placidus by default.
// 04 / When to use it

When to use it

Use the almuten when a product needs one planet to organise everything else around. It answers the ruler question directly for a traditional chart reading, gives a report a spine to hang its narrative on, and provides an AI interpretation with a single anchor instead of ten equally weighted placements. It sits naturally next to the essential dignities endpoint, which shows the underlying scoring in detail, and next to profections, where the lord of the year is a similar idea applied to time rather than to the whole life. The returned scores are worth surfacing to the user when the top two are close, because a narrow win is a real astrological statement about a chart divided between two rulers.

// 05 / Notes

Notes

Scoring follows the traditional five essential dignities, domicile, exaltation, triplicity, term and face, weighted in the classical manner and accumulated across the decisive positions of the figure. The seven classical planets are scored; the modern outers take no rulerships in this scheme. The chart is computed by the Swiss Ephemeris engine in the tropical zodiac.

Try the Almuten Figuris API

Grab a key and make your first call in under a minute.

99.9% SLA · 유료 플랜 · 30일 상태 →