astro_aspects
Compute aspects within a chart or cross-aspects between two charts.
- Layer: compute
- Methods: within-chart, between-charts
- Free tier: within-chart
- Paid tier: between-charts
Description
Compute aspects within a chart or cross-aspects between two charts.
Methods:
within-chart [Free] — Compute aspects within a single chart: planet-to-planet angular relationships (conjunction, sextile, square, trine, opposition; majors at default orbs) with applying/separating phase.
between-charts [Paid] — Cross-aspects between two charts (synastry / transit-to-natal): planet-to-planet, object, and declination aspects with bidirectional house overlays.
Input schema
within-chart
| Field | Type | Required | Constraints |
|---|---|---|---|
| birthData.year | integer | yes | min -4000, max 4000, int |
| birthData.month | integer | yes | min 1, max 12, int |
| birthData.day | integer | yes | min 1, max 31, int |
| birthData.hour | integer | yes | min 0, max 23, int |
| birthData.minute | integer | yes | min 0, max 59, int |
| birthData.second | integer | no | min 0, max 59, int |
| birthData.latitude | number | yes | min -90, max 90 |
| birthData.longitude | number | yes | min -180, max 180 |
| birthData.timezone | number | yes | min -12, max 14 |
| birthData.unknownTime | boolean | no | — |
| houseSystem | enum(44) | no | — |
| zodiac | enum(35) | no | — |
| aspectOrbs | any | "default" | "hide" | object | no | — |
| bodies.fortune | boolean | no | — |
| bodies.vertex | boolean | no | — |
| bodies.chiron | boolean | no | — |
| bodies.lilith | boolean | no | — |
| bodies.trueLilith | boolean | no | — |
| bodies.nodes | boolean | no | — |
| bodies.trueNode | boolean | no | — |
| bodies.minorAngles | boolean | no | — |
| minorAspects.quincunx | boolean | no | — |
| minorAspects.semiSextile | boolean | no | — |
| minorAspects.semiSquare | boolean | no | — |
| minorAspects.sesquiquadrate | boolean | no | — |
| minorAspects.quintile | boolean | no | — |
| minorAspects.biQuintile | boolean | no | — |
| minorAspects.septile | boolean | no | — |
| minorAspects.biSeptile | boolean | no | — |
| minorAspects.triSeptile | boolean | no | — |
| minorAspects.novile | boolean | no | — |
| minorAspects.biNovile | boolean | no | — |
| minorAspects.quadriNovile | boolean | no | — |
| minorAspects.semiQuintile | boolean | no | — |
| minorAspects.undecile | boolean | no | — |
| minorAspects.quindecile | boolean | no | — |
Example request
{
"method": "within-chart",
"birthData": {
"year": 1990,
"month": 1,
"day": 1,
"hour": 12,
"minute": 0,
"latitude": 51.5074,
"longitude": -0.1278,
"timezone": 0
}
}
Example response (captured; long values elided)
{
"subject": {
"dateTime": "1 January 1990 - 12:00 (GMT)",
"universalTime": "1 January 1990 - 12:00",
"localSiderealTime": "18:43:01",
"houseSystem": "Placidus system",
"coordinates": "51d30'N, 0d8'W",
"zodiac": "Tropical",
"ayanamsaOffset": null
},
"aspects": [
{
"body1": "Sun",
"body2": "Jupiter",
"aspect": "Opposition",
"angle": 180,
"orb": -5.67,
"isApplying": false
},
{
"body1": "Sun",
"body2": "Saturn",
"aspect": "Conjunction",
"angle": 0,
"orb": 4.84,
"isApplying": true
},
{
"body1": "Sun",
"body2": "Uranus",
"aspect": "Conjunction",
"angle": 0,
"orb": 5.03,
"isApplying": false
},
{
"body1": "Sun",
"body2": "Neptune",
"aspect": "Conjunction",
"angle": 0,
"orb": 1.22,
"isApplying": true
},
{
"body1": "Moon",
"body2": "Mars",
"aspect": "Square",
"angle": 90,
"orb": -6.73,
"isApplying": true
},
{
"body1": "Moon",
"body2": "Jupiter",
"aspect": "Trine",
"angle": 120,
"orb": 1.88,
"isApplying": true
},
{
"body1": "Moon",
"body2": "Uranus",
"aspect": "Sextile",
"angle": 60,
"orb": -2.52,
"isApplying": true
},
{
"body1": "Venus",
"body2": "Mars",
"aspect": "Sextile",
"angle": 60,
"orb": -3.78,
"isApplying": false
},
"… 5 more items"
]
}
between-charts
| Field | Type | Required | Constraints |
|---|---|---|---|
| partnerA.year | integer | yes | min -4000, max 4000, int |
| partnerA.month | integer | yes | min 1, max 12, int |
| partnerA.day | integer | yes | min 1, max 31, int |
| partnerA.hour | integer | yes | min 0, max 23, int |
| partnerA.minute | integer | yes | min 0, max 59, int |
| partnerA.second | integer | no | min 0, max 59, int |
| partnerA.latitude | number | yes | min -90, max 90 |
| partnerA.longitude | number | yes | min -180, max 180 |
| partnerA.timezone | number | yes | min -12, max 14 |
| partnerA.unknownTime | boolean | no | — |
| partnerB.year | integer | yes | min -4000, max 4000, int |
| partnerB.month | integer | yes | min 1, max 12, int |
| partnerB.day | integer | yes | min 1, max 31, int |
| partnerB.hour | integer | yes | min 0, max 23, int |
| partnerB.minute | integer | yes | min 0, max 59, int |
| partnerB.second | integer | no | min 0, max 59, int |
| partnerB.latitude | number | yes | min -90, max 90 |
| partnerB.longitude | number | yes | min -180, max 180 |
| partnerB.timezone | number | yes | min -12, max 14 |
| partnerB.unknownTime | boolean | no | — |
| houseSystem | enum(44) | no | — |
| zodiac | enum(35) | no | — |
| aspectOrbs | any | "default" | "hide" | object | no | — |
| bodies.fortune | boolean | no | — |
| bodies.vertex | boolean | no | — |
| bodies.chiron | boolean | no | — |
| bodies.lilith | boolean | no | — |
| bodies.trueLilith | boolean | no | — |
| bodies.nodes | boolean | no | — |
| bodies.trueNode | boolean | no | — |
| bodies.minorAngles | boolean | no | — |
| aspectToggles.fortuneAspects | boolean | no | — |
| aspectToggles.vertexAspects | boolean | no | — |
| aspectToggles.chironAspects | boolean | no | — |
| aspectToggles.lilithAspects | boolean | no | — |
| aspectToggles.nodeAspects | boolean | no | — |
| aspectToggles.ascMcAspects | boolean | no | — |
| minorAspects.quincunx | boolean | no | — |
| minorAspects.semiSextile | boolean | no | — |
| minorAspects.semiSquare | boolean | no | — |
| minorAspects.sesquiquadrate | boolean | no | — |
| minorAspects.quintile | boolean | no | — |
| minorAspects.biQuintile | boolean | no | — |
| minorAspects.septile | boolean | no | — |
| minorAspects.biSeptile | boolean | no | — |
| minorAspects.triSeptile | boolean | no | — |
| minorAspects.novile | boolean | no | — |
| minorAspects.biNovile | boolean | no | — |
| minorAspects.quadriNovile | boolean | no | — |
| minorAspects.semiQuintile | boolean | no | — |
| minorAspects.undecile | boolean | no | — |
| minorAspects.quindecile | boolean | no | — |
| parallelOrb | number | no | min 0, max 3 |
| aspectDisplay | "cross" | "natal-a" | "natal-b" | "hide" | no | — |
| switched | boolean | no | — |
Example request
{
"method": "between-charts",
"partnerA": {
"year": 1990,
"month": 1,
"day": 1,
"hour": 12,
"minute": 0,
"latitude": 51.5074,
"longitude": -0.1278,
"timezone": 0
},
"partnerB": {
"year": 1992,
"month": 3,
"day": 21,
"hour": 18,
"minute": 30,
"latitude": 51.5074,
"longitude": -0.1278,
"timezone": 0
}
}
Example response (captured; long values elided)
{
"partnerASummary": {
"dateTime": "1 January 1990 - 12:00 (GMT)",
"universalTime": "1 January 1990 - 12:00",
"localSiderealTime": "18:43:01",
"houseSystem": "Placidus system",
"coordinates": "51d30'N, 0d8'W",
"zodiac": "Tropical",
"ayanamsaOffset": null
},
"partnerBSummary": {
"dateTime": "21 March 1992 - 18:30 (GMT)",
"universalTime": "21 March 1992 - 18:30",
"localSiderealTime": "06:27:34",
"houseSystem": "Placidus system",
"coordinates": "51d30'N, 0d8'W",
"zodiac": "Tropical",
"ayanamsaOffset": null
},
"partnerA": {
"summary": {
"dateTime": "1 January 1990 - 12:00 (GMT)",
"universalTime": "1 January 1990 - 12:00",
"localSiderealTime": "18:43:01",
"houseSystem": "Placidus system",
"coordinates": "51d30'N, 0d8'W",
"zodiac": "Tropical",
"ayanamsaOffset": null
},
"planets": [
{
"id": "Sun",
"longitude": 280.814265,
"latitude": 0.000013,
"speed": 1.019476,
"isRetrograde": false,
"sign": {
"sign": 9,
"signName": "Capricorn",
"degrees": 10,
"minutes": 48,
"seconds": 51
},
"house": 10
},
{
"id": "Moon",
"longitude": 333.267706,
"latitude": 1.470679,
"speed": 13.470138,
"isRetrograde": false,
"sign": {
"sign": 11,
"signName": "Pisces",
"degrees": 3,
"minutes": 16,
"seconds": 4
},
"house": 12
},
{
"id": "Mercury",
"longitude": 295.672824,
"latitude": 0.630303,
"speed": -0.294579,
"isRetrograde": true,
"sign": {
"sign": 9,
"signName": "Capricorn",
"degrees": 25,
"minutes": 40,
"seconds": 22
},
"house": 10
},
{
"id": "Venus",
"longitude": 306.22196,
"latitude": 1.901161,
"speed": -0.130285,
"isRetrograde": true,
"sign": {
"sign": 10,
"signName": "Aquarius",
"degrees": 6,
"minutes": 13,
"seconds": 19
},
"house": 11
},
{
"id": "Mars",
"longitude": 250.000088,
"latitude": -0.032937,
"speed": 0.703758,
"isRetrograde": false,
"sign": {
"sign": 8,
"signName": "Sagittarius",
"degrees": 10,
"minutes": 0,
"seconds": 0
},
"house": 8
},
{
"id": "Jupiter",
"longitude": 95.148793,
"latitude": -0.116988,
"speed": -0.13448,
"isRetrograde": true,
"sign": {
"sign": 3,
"signName": "Cancer",
"degrees": 5,
"minutes": 8,
"seconds": 56
},
"house": 3
},
{
"id": "Saturn",
"longitude": 285.657499,
"latitude": 0.293309,
"speed": 0.118271,
"isRetrograde": false,
"sign": {
"sign": 9,
"signName": "Capricorn",
"degrees": 15,
"minutes": 39,
"seconds": 27
},
"house": 10
},
{
"id": "Uranus",
"longitude": 275.785441,
"latitude": -0.270101,
"speed": 0.060008,
"isRetrograde": false,
"sign": {
"sign": 9,
"signName": "Capricorn",
"degrees": 5,
"minutes": 47,
"seconds": 8
},
"house": 9
},
"… 7 more items"
],
"houses": [
{
"house": 1,
"longitude": 24.947013,
"sign": {
"sign": 0,
"signName": "Aries",
"degrees": 24,
"minutes": 56,
"seconds": 49
}
},
{
"house": 2,
"longitude": 61.533457,
"sign": {
"sign": 2,
"signName": "Gemini",
"degrees": 1,
"minutes": 32,
"seconds": 0
}
},
{
"house": 3,
"longitude": 82.317459,
"sign": {
"sign": 2,
"signName": "Gemini",
"degrees": 22,
"minutes": 19,
"seconds": 3
}
},
{
"house": 4,
"longitude": 99.88375,
"sign": {
"sign": 3,
"signName": "Cancer",
"degrees": 9,
"minutes": 53,
"seconds": 2
}
},
{
"house": 5,
"longitude": 119.36486,
"sign": {
"sign": 3,
"signName": "Cancer",
"degrees": 29,
"minutes": 21,
"seconds": 53
}
},
{
"house": 6,
"longitude": 148.13644,
"sign": {
"sign": 4,
"signName": "Leo",
"degrees": 28,
"minutes": 8,
"seconds": 11
}
},
{
"house": 7,
"longitude": 204.947013,
"sign": {
"sign": 6,
"signName": "Libra",
"degrees": 24,
"minutes": 56,
"seconds": 49
}
},
{
"house": 8,
"longitude": 241.533457,
"sign": {
"sign": 8,
"signName": "Sagittarius",
"degrees": 1,
"minutes": 32,
"seconds": 0
}
},
"… 4 more items"
],
"ascendant": 24.947013,
"midheaven": 279.88375,
"vertex": 188.711031,
"majorAspects": [
{
"body1": "Sun",
"body2": "Jupiter",
"aspect": "Opposition",
"angle": 180,
"orb": -5.67,
"isApplying": false
},
{
"body1": "Sun",
"body2": "Saturn",
"aspect": "Conjunction",
"angle": 0,
"orb": 4.84,
"isApplying": true
},
{
"body1": "Sun",
"body2": "Uranus",
"aspect": "Conjunction",
"angle": 0,
"orb": 5.03,
"isApplying": false
},
{
"body1": "Sun",
"body2": "Neptune",
"aspect": "Conjunction",
"angle": 0,
"orb": 1.22,
"isApplying": true
},
{
"body1": "Moon",
"body2": "Mars",
"aspect": "Square",
"angle": 90,
"orb": -6.73,
"isApplying": true
},
{
"body1": "Moon",
"body2": "Jupiter",
"aspect": "Trine",
"angle": 120,
"orb": 1.88,
"isApplying": true
},
{
"body1": "Moon",
"body2": "Uranus",
"aspect": "Sextile",
"angle": 60,
"orb": -2.52,
"isApplying": true
},
{
"body1": "Venus",
"body2": "Mars",
"aspect": "Sextile",
"angle": 60,
"orb": -3.78,
"isApplying": false
},
"… 5 more items"
],
"pointAspects": [
{
"body1": "Sun",
"body2": "Lilith",
"aspect": "Sextile",
"angle": 60,
"orb": 4.35,
"isApplying": false
},
{
"body1": "Sun",
"body2": "Chiron",
"aspect": "Opposition",
"angle": 180,
"orb": -3,
"isApplying": true
},
{
"body1": "Moon",
"body2": "Lilith",
"aspect": "Trine",
"angle": 120,
"orb": -3.2,
"isApplying": true
},
{
"body1": "Venus",
"body2": "Lilith",
"aspect": "Square",
"angle": 90,
"orb": -0.24,
"isApplying": false
},
{
"body1": "Mars",
"body2": "Fortune",
"aspect": "Opposition",
"angle": 180,
"orb": -7.4,
"isApplying": true
},
{
"body1": "Jupiter",
"body2": "Lilith",
"aspect": "Trine",
"angle": 120,
"orb": 1.32,
"isApplying": false
},
{
"body1": "Saturn",
"body2": "Chiron",
"aspect": "Opposition",
"angle": 180,
"orb": -1.84,
"isApplying": false
},
{
"body1": "Uranus",
"body2": "Lilith",
"aspect": "Sextile",
"angle": 60,
"orb": -0.68,
"isApplying": false
},
"… 7 more items"
],
"parallelAspects": [
{
"body1": "Sun",
"body2": "Mars",
"aspect": "Parallel",
"orb": 1.02
},
{
"body1": "Sun",
"body2": "Jupiter",
"aspect": "Contra-Parallel",
"orb": 0.22
},
{
"body1": "Sun",
"body2": "Saturn",
"aspect": "Parallel",
"orb": 0.77
},
{
"body1": "Sun",
"body2": "Uranus",
"aspect": "Parallel",
"orb": 0.58
},
{
"body1": "Sun",
"body2": "Neptune",
"aspect": "Parallel",
"orb": 0.95
},
{
"body1": "Sun",
"body2": "MC",
"aspect": "Parallel",
"orb": 0.07
},
{
"body1": "Sun",
"body2": "Fortune",
"aspect": "Contra-Parallel",
"orb": 0.16
},
{
"body1": "Moon",
"body2": "Ascendant",
"aspect": "Contra-Parallel",
"orb": 0.72
},
"… 20 more items"
],
"technicalCoords": [
{
"id": "Sun",
"longitude": 280.814265,
"latitude": 0.000013,
"ra": 281.761141,
"declination": -23.001861,
"speed": 1.019476,
"isOutOfBounds": false
},
{
"id": "Moon",
"longitude": 333.267706,
"latitude": 1.470679,
"ra": 334.661565,
"declination": -8.936825,
"speed": 13.470138,
"isOutOfBounds": false
},
{
"id": "Mercury",
"longitude": 295.672824,
"latitude": 0.630303,
"ra": 297.527158,
"declination": -20.391908,
"speed": -0.294579,
"isOutOfBounds": false
},
{
"id": "Venus",
"longitude": 306.22196,
"latitude": 1.901161,
"ra": 308.10996,
"declination": -16.877487,
"speed": -0.130285,
"isOutOfBounds": false
},
{
"id": "Mars",
"longitude": 250.000088,
"latitude": -0.032937,
"ra": 248.355923,
"declination": -21.984892,
"speed": 0.703758,
"isOutOfBounds": false
},
{
"id": "Jupiter",
"longitude": 95.148793,
"latitude": -0.116988,
"ra": 95.604221,
"declination": 23.225258,
"speed": -0.13448,
"isOutOfBounds": false
},
{
"id": "Saturn",
"longitude": 285.657499,
"latitude": 0.293309,
"ra": 286.951244,
"declination": -22.232275,
"speed": 0.118271,
"isOutOfBounds": false
},
{
"id": "Uranus",
"longitude": 275.785441,
"latitude": -0.270101,
"ra": 276.31478,
"declination": -23.585721,
"speed": 0.060008,
"isOutOfBounds": true
},
"… 10 more items"
],
"partOfFortune": {
"id": "Fortune",
"longitude": 77.400454,
"latitude": 0,
"speed": 0,
"isRetrograde": false,
"sign": {
"sign": 2,
"signName": "Gemini",
"degrees": 17,
"minutes": 24,
"seconds": 2
},
"house": 2
},
"partOfSpirit": 332.493572,
"extendedBodies": [],
"unavailable": [],
"unknown": []
},
"partnerB": {
"summary": {
"dateTime": "21 March 1992 - 18:30 (GMT)",
"universalTime": "21 March 1992 - 18:30",
"localSiderealTime": "06:27:34",
"houseSystem": "Placidus system",
"coordinates": "51d30'N, 0d8'W",
"zodiac": "Tropical",
"ayanamsaOffset": null
},
"planets": [
{
"id": "Sun",
"longitude": 1.393755,
"latitude": -0.000224,
"speed": 0.992257,
"isRetrograde": false,
"sign": {
"sign": 0,
"signName": "Aries",
"degrees": 1,
"minutes": 23,
"seconds": 38
},
"house": 6
},
{
"id": "Moon",
"longitude": 220.933715,
"latitude": -4.092604,
"speed": 13.506346,
"isRetrograde": false,
"sign": {
"sign": 7,
"signName": "Scorpio",
"degrees": 10,
"minutes": 56,
"seconds": 1
},
"house": 2
},
{
"id": "Mercury",
"longitude": 9.856913,
"latitude": 3.507136,
"speed": -0.579606,
"isRetrograde": true,
"sign": {
"sign": 0,
"signName": "Aries",
"degrees": 9,
"minutes": 51,
"seconds": 25
},
"house": 7
},
{
"id": "Venus",
"longitude": 339.596357,
"latitude": -1.262541,
"speed": 1.234524,
"isRetrograde": false,
"sign": {
"sign": 11,
"signName": "Pisces",
"degrees": 9,
"minutes": 35,
"seconds": 47
},
"house": 5
},
{
"id": "Mars",
"longitude": 325.105759,
"latitude": -1.180473,
"speed": 0.774521,
"isRetrograde": false,
"sign": {
"sign": 10,
"signName": "Aquarius",
"degrees": 25,
"minutes": 6,
"seconds": 21
},
"house": 5
},
{
"id": "Jupiter",
"longitude": 156.985545,
"latitude": 1.375534,
"speed": -0.109735,
"isRetrograde": true,
"sign": {
"sign": 5,
"signName": "Virgo",
"degrees": 6,
"minutes": 59,
"seconds": 8
},
"house": 11
},
{
"id": "Saturn",
"longitude": 315.00656,
"latitude": -0.691884,
"speed": 0.094558,
"isRetrograde": false,
"sign": {
"sign": 10,
"signName": "Aquarius",
"degrees": 15,
"minutes": 0,
"seconds": 24
},
"house": 5
},
{
"id": "Uranus",
"longitude": 287.606277,
"latitude": -0.390347,
"speed": 0.026001,
"isRetrograde": false,
"sign": {
"sign": 9,
"signName": "Capricorn",
"degrees": 17,
"minutes": 36,
"seconds": 23
},
"house": 4
},
"… 7 more items"
],
"houses": [
{
"house": 1,
"longitude": 184.861485,
"sign": {
"sign": 6,
"signName": "Libra",
"degrees": 4,
"minutes": 51,
"seconds": 41
}
},
{
"house": 2,
"longitude": 209.312336,
"sign": {
"sign": 6,
"signName": "Libra",
"degrees": 29,
"minutes": 18,
"seconds": 44
}
},
{
"house": 3,
"longitude": 239.925528,
"sign": {
"sign": 7,
"signName": "Scorpio",
"degrees": 29,
"minutes": 55,
"seconds": 32
}
},
{
"house": 4,
"longitude": 276.329005,
"sign": {
"sign": 9,
"signName": "Capricorn",
"degrees": 6,
"minutes": 19,
"seconds": 44
}
},
{
"house": 5,
"longitude": 312.056513,
"sign": {
"sign": 10,
"signName": "Aquarius",
"degrees": 12,
"minutes": 3,
"seconds": 23
}
},
{
"house": 6,
"longitude": 341.576787,
"sign": {
"sign": 11,
"signName": "Pisces",
"degrees": 11,
"minutes": 34,
"seconds": 36
}
},
{
"house": 7,
"longitude": 4.861485,
"sign": {
"sign": 0,
"signName": "Aries",
"degrees": 4,
"minutes": 51,
"seconds": 41
}
},
{
"house": 8,
"longitude": 29.312336,
"sign": {
"sign": 0,
"signName": "Aries",
"degrees": 29,
"minutes": 18,
"seconds": 44
}
},
"… 4 more items"
],
"ascendant": 184.861485,
"midheaven": 96.329005,
"vertex": 11.413357,
"majorAspects": [
{
"body1": "Moon",
"body2": "Venus",
"aspect": "Trine",
"angle": 120,
"orb": -1.34,
"isApplying": false
},
{
"body1": "Moon",
"body2": "Jupiter",
"aspect": "Sextile",
"angle": 60,
"orb": 3.95,
"isApplying": false
},
{
"body1": "Moon",
"body2": "Saturn",
"aspect": "Square",
"angle": 90,
"orb": 4.07,
"isApplying": true
},
{
"body1": "Venus",
"body2": "Jupiter",
"aspect": "Opposition",
"angle": 180,
"orb": -2.61,
"isApplying": false
},
{
"body1": "Mars",
"body2": "Pluto",
"aspect": "Square",
"angle": 90,
"orb": 2.34,
"isApplying": false
},
{
"body1": "Uranus",
"body2": "Neptune",
"aspect": "Conjunction",
"angle": 0,
"orb": 1.11,
"isApplying": true
},
{
"body1": "Neptune",
"body2": "Pluto",
"aspect": "Sextile",
"angle": 60,
"orb": -4.05,
"isApplying": true
}
],
"pointAspects": [
{
"body1": "Sun",
"body2": "Node",
"aspect": "Square",
"angle": 90,
"orb": -4.14,
"isApplying": true
},
{
"body1": "Sun",
"body2": "Chiron",
"aspect": "Trine",
"angle": 120,
"orb": 2.05,
"isApplying": true
},
{
"body1": "Sun",
"body2": "S.Node",
"aspect": "Square",
"angle": 90,
"orb": 4.14,
"isApplying": true
},
{
"body1": "Moon",
"body2": "Lilith",
"aspect": "Square",
"angle": 90,
"orb": -4.26,
"isApplying": false
},
{
"body1": "Moon",
"body2": "S.Node",
"aspect": "Trine",
"angle": 120,
"orb": 5.4,
"isApplying": false
},
{
"body1": "Mercury",
"body2": "Node",
"aspect": "Square",
"angle": 90,
"orb": 4.33,
"isApplying": true
},
{
"body1": "Mercury",
"body2": "Lilith",
"aspect": "Sextile",
"angle": 60,
"orb": 3.18,
"isApplying": true
},
{
"body1": "Mercury",
"body2": "Chiron",
"aspect": "Trine",
"angle": 120,
"orb": -6.41,
"isApplying": true
},
"… 9 more items"
],
"parallelAspects": [
{
"body1": "Venus",
"body2": "Jupiter",
"aspect": "Contra-Parallel",
"orb": 1.08
},
{
"body1": "Mars",
"body2": "Fortune",
"aspect": "Parallel",
"orb": 1.18
},
{
"body1": "Saturn",
"body2": "Lilith",
"aspect": "Parallel",
"orb": 0.97
},
{
"body1": "Uranus",
"body2": "Node",
"aspect": "Parallel",
"orb": 0.66
},
{
"body1": "Uranus",
"body2": "S.Node",
"aspect": "Contra-Parallel",
"orb": 0.66
},
{
"body1": "Uranus",
"body2": "MC",
"aspect": "Contra-Parallel",
"orb": 0.62
},
{
"body1": "Pluto",
"body2": "Vertex",
"aspect": "Contra-Parallel",
"orb": 0.71
},
{
"body1": "Node",
"body2": "S.Node",
"aspect": "Contra-Parallel",
"orb": 0
},
"… 3 more items"
],
"technicalCoords": [
{
"id": "Sun",
"longitude": 1.393755,
"latitude": -0.000224,
"ra": 1.278861,
"declination": 0.554185,
"speed": 0.992257,
"isOutOfBounds": false
},
{
"id": "Moon",
"longitude": 220.933715,
"latitude": -4.092604,
"ra": 217.162444,
"declination": -18.992657,
"speed": 13.506346,
"isOutOfBounds": false
},
{
"id": "Mercury",
"longitude": 9.856913,
"latitude": 3.507136,
"ra": 7.669773,
"declination": 7.128528,
"speed": -0.579606,
"isOutOfBounds": false
},
{
"id": "Venus",
"longitude": 339.596357,
"latitude": -1.262541,
"ra": 341.638106,
"declination": -9.141158,
"speed": 1.234524,
"isOutOfBounds": false
},
{
"id": "Mars",
"longitude": 325.105759,
"latitude": -1.180473,
"ra": 327.79291,
"declination": -14.265769,
"speed": 0.774521,
"isOutOfBounds": false
},
{
"id": "Jupiter",
"longitude": 156.985545,
"latitude": 1.375534,
"ra": 159.226313,
"declination": 10.224444,
"speed": -0.109735,
"isOutOfBounds": false
},
{
"id": "Saturn",
"longitude": 315.00656,
"latitude": -0.691884,
"ra": 317.683107,
"declination": -16.996495,
"speed": 0.094558,
"isOutOfBounds": false
},
{
"id": "Uranus",
"longitude": 287.606277,
"latitude": -0.390347,
"ra": 289.13471,
"declination": -22.669062,
"speed": 0.026001,
"isOutOfBounds": false
},
"… 10 more items"
],
"partOfFortune": {
"id": "Fortune",
"longitude": 325.321526,
"latitude": 0,
"speed": 0,
"isRetrograde": false,
"sign": {
"sign": 10,
"signName": "Aquarius",
"degrees": 25,
"minutes": 19,
"seconds": 17
},
"house": 5
},
"partOfSpirit": 44.401445,
"extendedBodies": [],
"unavailable": [],
"unknown": []
},
"crossAspects": [
{
"body1": "Sun",
"body2": "Venus",
"aspect": "Sextile",
"angle": 60,
"orb": -4.83,
"isApplying": true
},
{
"body1": "Sun",
"body2": "Jupiter",
"aspect": "Square",
"angle": 90,
"orb": 3.76,
"isApplying": true
},
{
"body1": "Sun",
"body2": "Uranus",
"aspect": "Square",
"angle": 90,
"orb": -4.39,
"isApplying": true
},
{
"body1": "Moon",
"body2": "Sun",
"aspect": "Sextile",
"angle": 60,
"orb": -0.12,
"isApplying": false
},
{
"body1": "Moon",
"body2": "Venus",
"aspect": "Square",
"angle": 90,
"orb": -4.71,
"isApplying": false
},
{
"body1": "Moon",
"body2": "Jupiter",
"aspect": "Trine",
"angle": 120,
"orb": 5.78,
"isApplying": false
},
{
"body1": "Moon",
"body2": "Saturn",
"aspect": "Sextile",
"angle": 60,
"orb": 4.72,
"isApplying": true
},
{
"body1": "Moon",
"body2": "Neptune",
"aspect": "Sextile",
"angle": 60,
"orb": 1.1,
"isApplying": true
},
"… 32 more items"
],
"crossObjectAspects": [],
"crossOtherAspects": [],
"crossObjectToObjectAspects": [],
"crossParallelAspects": [
{
"body1": "Sun",
"body2": "Uranus",
"aspect": "Parallel",
"orb": 0.33
},
{
"body1": "Sun",
"body2": "Node",
"aspect": "Parallel",
"orb": 0.32
},
{
"body1": "Sun",
"body2": "S.Node",
"aspect": "Contra-Parallel",
"orb": 0.32
},
{
"body1": "Sun",
"body2": "MC",
"aspect": "Contra-Parallel",
"orb": 0.29
},
{
"body1": "Moon",
"body2": "Venus",
"aspect": "Parallel",
"orb": 0.2
},
{
"body1": "Mercury",
"body2": "Neptune",
"aspect": "Parallel",
"orb": 1.01
},
{
"body1": "Venus",
"body2": "Saturn",
"aspect": "Parallel",
"orb": 0.12
},
{
"body1": "Venus",
"body2": "Lilith",
"aspect": "Parallel",
"orb": 0.86
},
"… 37 more items"
],
"partnerAInBHouses": [
{
"bodyId": "Sun",
"signName": "Capricorn",
"house": 4
},
{
"bodyId": "Moon",
"signName": "Pisces",
"house": 5
},
{
"bodyId": "Mercury",
"signName": "Capricorn",
"house": 4
},
{
"bodyId": "Venus",
"signName": "Aquarius",
"house": 4
},
{
"bodyId": "Mars",
"signName": "Sagittarius",
"house": 3
},
{
"bodyId": "Jupiter",
"signName": "Cancer",
"house": 9
},
{
"bodyId": "Saturn",
"signName": "Capricorn",
"house": 4
},
{
"bodyId": "Uranus",
"signName": "Capricorn",
"house": 3
},
"… 7 more items"
],
"partnerBInAHouses": [
{
"bodyId": "Sun",
"signName": "Aries",
"house": 12
},
{
"bodyId": "Moon",
"signName": "Scorpio",
"house": 7
},
{
"bodyId": "Mercury",
"signName": "Aries",
"house": 12
},
{
"bodyId": "Venus",
"signName": "Pisces",
"house": 12
},
{
"bodyId": "Mars",
"signName": "Aquarius",
"house": 11
},
{
"bodyId": "Jupiter",
"signName": "Virgo",
"house": 6
},
{
"bodyId": "Saturn",
"signName": "Aquarius",
"house": 11
},
{
"bodyId": "Uranus",
"signName": "Capricorn",
"house": 10
},
"… 7 more items"
]
}