AstroWay/api v2.130.2 · de
alle Systeme in Ordnung
// astrology api · POST /v1/symbolic-directions

Solar Arc Directions API

Solar arc moves the whole chart forward by one number: the distance the Sun has travelled by secondary progression. Every planet, every cusp and both angles shift by that same arc, so a natal aspect that was two degrees from exact comes to exact about two years later. This endpoint returns the directed chart and the arc that produced it.

Endpunkt
POST /v1/symbolic-directions
Kosten
50 Credits
Latenz
~50 ms
Stufe
Tier 3
// 01 / Was es berechnet

Solar Arc Directions API

From the birth data and a target date the endpoint first progresses the chart day-for-a-year, measures how far the progressed Sun has moved from its natal position, and takes that distance as the arc. It then adds the arc to every natal longitude at once: all planets, all house cusps, the ascendant and the MC. The response carries the directed positions under data.planets and data.houses, the arc itself in degrees under data.arc, and the key that produced it under data.key. Because a single arc is applied uniformly, the geometry of the natal chart is preserved and only its relationship to the natal degrees changes, which is what makes the technique so economical to read: one number tells you the state of the entire chart at a given age. Two other keys are available on the same endpoint. Set key to naibod for the mean solar rate of 59'08.3" per year, or omit it for the plain one degree per year. Sending converse true directs backwards from the birth moment instead of forwards, reversing the sign of the arc.

// 02 / Live-Anfrage

POST/v1/symbolic-directions

curl -X POST https://api.astroway.info/v1/symbolic-directions \
  -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,
  "targetDate": "2026-05-15",
  "key": "solar_arc"
}'
Antwort (Auszug)
{
  "ok": true,
  "data": {
    "arc": 34.5083,
    "key": "solar_arc",
    "planets": [
      {
        "id": 0,
        "name": "Sun",
        "longitude": 88.8843,
        "isRetrograde": false
      }
    ],
    "houses": {
      "system": "P",
      "ascendant": 204.4763,
      "mc": 111.5826
    }
  }
}
// 03 / Parameter

Parameter

nametypeErforderlich
date string (YYYY-MM-DD) ja Birth date.
time string (HH:MM:SS) ja Local clock time at birth.
timezoneOffset number (hours) ja UTC offset in effect at the birth moment. Decimal allowed for half-hour zones.
latitude number ja Birth-place latitude, decimal degrees (north positive).
longitude number ja Birth-place longitude, decimal degrees (east positive).
targetDate string (YYYY-MM-DD) ja The date the chart is directed to.
key string nein Directional key: solar_arc (the arc of the progressed Sun), naibod (59'08.3" per year), or one_degree (the default, 1° per year).
converse boolean nein Direct backwards from the birth moment instead of forwards. Reverses the sign of the arc.
// 04 / Wann verwenden

Wann verwenden

Reach for solar arc when you need timing that is symbolic rather than astronomical, and when you want it in a form a reader can follow. Because everything moves at one rate, a directed contact lands on a specific year rather than a window, which suits a life-timeline feature, an age-milestone report, or an AI narrative that has to say what a given year is about. It pairs naturally with secondary progressions, since the arc is derived from the same progressed Sun: progressions give you the moving inner chart, solar arc gives you the whole chart translated forward. Compare the three keys when precision matters to your audience. Solar arc follows the actual Sun and so varies slightly by birth date, Naibod uses the mean rate, and one degree per year is the round-number convention. For a mid-May birth the three come out at roughly 34.5, 35.5 and 36.0 degrees over 36 years, close enough to agree on the decade and far enough apart to name different years.

// 05 / Hinweise

Hinweise

The arc is the distance travelled by the secondary-progressed Sun, day for a year, which is the standard definition; the Naibod key uses the mean daily motion of the Sun, 59'08.3" per year. For solar arc the progressed chart is computed forwards and the direction of travel is applied once, so converse directions return the arc negated rather than doubled. Positions come from the Swiss Ephemeris engine in the tropical zodiac, on the same bodies and house system as the natal endpoints.

Solar Arc Directions-API ausprobieren

Hol dir einen Key und mach deinen ersten Aufruf in unter einer Minute.

99,9% SLA · kostenpflichtige Tarife · 30 Tage Status →