AstroWay/api v2.201.6 · hi
सभी सिस्टम सामान्य हैं
// astrology api · POST /v1/parallel-aspects

अवरोहण पहलू API

ज्यादातर aspect काम ecliptic में longitude के साथ होता है, लेकिन दो bodies declination से भी जुड़ सकते हैं - उनका celestial equator से उत्तर या दक्षिण की दूरी. यह endpoint उस दूसरे dimension में काम करता है, parallels और contraparallels ढूँढता है, जो conjunction और opposition के declination समकक्ष हैं, और जब कोई body out of bounds हो जाता है, उसे नोट करता है.

Endpoint
POST /v1/parallel-aspects
Cost
20 credits
Latency
~64 ms
Tier
Tier 2
// 01 / What it computes

अवरोहण पहलू API

जन्म तिथि, समय, UTC ऑफ़सेट और coordinates से endpoint प्रत्येक body की declination निकालता है - वह celestial equator से कितनी उत्तर या दक्षिण है, ecliptic plane से जो longitude मापा जाता है - और फिर उन declinations की तुलना bodies के बीच करता है। जहाँ दो bodies एक ही declination एक ही पक्ष में साझा करती हैं, वह parallel रिकॉर्ड करता है, जो conjunction का declination समकक्ष है; जहाँ वे opposite पक्ष में समान declination साझा करती हैं, वह contraparallel रिकॉर्ड करता है, जो opposition का counterpart है। प्रत्येक संपर्क data.parallels में शामिल bodies के साथ लौटाया जाता है। endpoint out-of-bounds संदर्भ भी दिखाता है - जब किसी body की declination Sun के अधिकतम से अधिक हो जाती है, जिससे वह Sun के पहुँच से बाहर की बैंड में चला जाता है, यह traditionally planet को बिना restraint के चलने जैसा पढ़ा जाता है। यह तुम्हें एक ऐसा संपर्क लेयर देता है जो pure longitude पूरी तरह मिस करता है: दो ग्रह जिनका longitudinal aspect नहीं है, फिर भी एक कड़ा parallel में बंधे रह सकते हैं।

// 02 / Live request

POST/v1/parallel-aspects

curl -X POST https://api.astroway.info/v1/parallel-aspects \
  -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": {
    "parallels": [
      {
        "planet1": "Sun",
        "planet2": "Moon",
        "type": "contra-parallel",
        "orb": 0.49
      }
    ]
  }
}
// 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 को तब इस्तेमाल करो जब aspect engine को ecliptic पर रुकना नहीं चाहिए - जैसे कोई serious chart analyser, synastry या transit tool जो declination लेयर चाहता है, या ऐसी रिपोर्ट जो बताती है कि दो ग्रह बिना longitude aspect के भी क्यों जुड़े महसूस होते हैं। parallels और contraparallels वही contacts हैं जो longitude-only grid छोड़ देता है, इसलिए इन्हें जोड़ने से एक असली गैप भरता है न कि natal-chart aspect आउटपुट को दोहराता है। out-of-bounds फ़्लैग स्वतंत्र रूप से उपयोगी है: यह उन ग्रहों को मार्क करता है जिन्हें tradition बिना रोक-टोक चलते हुए देखती है, जो chart रिपोर्ट में एक साफ़ हाइलाइट बनाता है। वही birth data भेजो जो तुमने कहीं और इस्तेमाल किया था और declination contacts तुम्हारे longitude aspects वाले ही bodies को रेफ़र करेंगे, जिससे तुम दोनों grids को एक ही chart की दो पढ़ाइयों की तरह पेश कर सको।

// 05 / Notes

Notes

parallels और contraparallels traditional declination doctrine का पालन करते हैं, समान-declination contacts को conjunction और opposition के analogues मानते हैं; out-of-bounds रीडिंग Kt Boehrer के काम पर आधारित है। declinations Swiss Ephemeris (Astrodienst) engine द्वारा tropical frame में गणना की जाती हैं, वही bodies पर जो longitude-based natal endpoints में हैं।

Try the अवरोहण पहलू API

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

99.9% SLA · पेड प्लान · 30 दिन स्थिति →