AstroWay/api v2.201.7 · ko
모든 시스템 정상 작동 중
// astrology api · POST /v1/essential-dignities

핵심 존엄성 API

핵심 존엄성은 각 행성이 차지한 별자리와 각도에 얼마나 편안히 위치하는지를 측정해. 이 endpoint는 모든 천체를 다섯 가지 전통 체계인 rulership, exaltation, triplicity, term, face와 두 가지 debilities에 적용해 검사하고, 행성별 세부 결과와 전체 가중 합계를 반환해.

Endpoint
POST /v1/essential-dignities
Cost
20 credits
Latency
~62 ms
Tier
Tier 2
// 01 / What it computes

핵심 존엄성 API

출생 시점과 장소가 주어지면, 이 endpoint는 각 행성을 별자리와 각도로 찾은 뒤, 중세와 헬레니즘 전통이 물려받은 Ptolemaic dignity tables와 비교해 점수를 매겨. 행성은 강도 순으로 다섯 가지 essential dignities - domicile rulership, exaltation, triplicity rulership(차트 sect 기준), term(또는 bound), face(또는 decan) - 와 두 가지 essential debilities인 detriment와 fall을 검사해. 각 행성은 해당 조건마다 기존 dignity 포인트를 받고, debilities는 차감돼, 결과는 data.dignities 아래 행성별 세부와 차트 전체 totalScore에 합산돼. 이 결과는 행성이 어느 별자리에 있는지만 아니라 그곳에서 얼마나 존엄하거나 약화됐는지를 알려줘, 즉 행성이 자기 자리인 경우와 단순히 지나가는 경우를 구분해 줘.

// 02 / Live request

POST/v1/essential-dignities

curl -X POST https://api.astroway.info/v1/essential-dignities \
  -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
}'
Response (excerpt)
{
  "ok": true,
  "data": {
    "dignities": [
      {
        "planet": "Venus",
        "rulership": false,
        "exaltation": true,
        "triplicity": true,
        "score": 7
      }
    ],
    "totalScore": 12
  }
}
// 03 / Parameters

Parameters

nametypeRequired
date string (YYYY-MM-DD) yes Birth date.
time string (HH:MM:SS) yes Local clock time at birth.
timezoneOffset number (hours) yes UTC offset in effect at the birth moment (e.g. 3 for Kyiv summer time). Decimal allowed for half-hour zones.
latitude number yes Birth-place latitude, decimal degrees (north positive).
longitude number yes Birth-place longitude, decimal degrees (east positive).
// 04 / When to use it

When to use it

해석에서 행성의 강도를 단순히 위치만 보고 싶을 때가 아니라 평가해야 할 때마다 이 endpoint를 사용해 - 전통·헬레니즘 차트 독자, 시점 차트 도우미, 선출 점수 매기기, 혹은 차트에서 실제로 어떤 행성이 중요한지 순위 매기는 모든 도구에 적합해. 전체 점수는 정렬이나 임계값 설정에 쓸 수 있는 빠른 스칼라를 제공하고, 행성별 행은 왜 그런지 설명해 줘: 이 Venus는 exalted이고 triplicity에 속하고, 저 Mars는 fall이고 detriment에 있어. natal-chart endpoint와 자연스럽게 연결돼 - 거기서 별자리와 각도 위치를 가져와 같은 출생 데이터를 여기서 전달하면 존엄성 가중치를 추가할 수 있어. 이 스킴은 규칙 기반이고 결정론적이라 같은 입력은 언제나 같은 점수를 내서 차트 간 비교 기능에 신뢰성을 줘.

// 05 / Notes

Notes

점수는 전통 및 중세 서양 점성술에서 이어진 Ptolemaic dignity table을 따르고, triplicity rulership은 차트 sect(낮 또는 밤)에 따라 지정돼. 행성 위치는 Swiss Ephemeris(Astrodienst) 엔진의 열대 황도대에서 가져오므로, dignity가 적용되는 별자리와 각도는 natal endpoint와 정확히 일치해.

Try the 핵심 존엄성 API

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

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