AstrologyAPI

Synastry Horoscope

POSThttps://json.astrologyapi.com/v1/synastry_horoscope
Copy

The synastry_horoscope API returns the astrological information of two individuals. The response contains the position and properties of celestial bodies such as Sun, Moon, Mercury, Venus, Mars, Jupiter, Saturn, Uranus, Neptune, Pluto, Node, Chiron, and Part of Fortune for each individual. The data includes the name, degree, speed, retrograde status, sign, and house of each celestial body.

POST/synastry_horoscope
Copy
1import requests
2import json
3
4# Your API key
5api_key = "<YOUR_API_KEY>"
6
7# API endpoint URL
8api_url = "https://json.astrologyapi.com/v1/synastry_horoscope"
9
10# Request data
11data = {
12        "p_day": 10,
13        "p_month": 5,
14        "p_year": 1990,
15        "p_hour": 11,
16        "p_min": 55,
17        "p_lat": 19.2056,
18        "p_lon": 25.2056,
19        "p_tzone": 5.5,
20        "s_day": 10,
21        "s_month": 5,
22        "s_year": 1990,
23        "s_hour": 11,
24        "s_min": 55,
25        "s_lat": 19.2056,
26        "s_lon": 25.2056,
27        "s_tzone": 5.5
28    }
29
30headers = {
31    'x-astrologyapi-key': api_key,
32    'Content-Type': 'application/json'
33    # Add 'Accept-Language': '<language_code>' if needed
34}
35
36try:
37    response = requests.post(api_url, headers=headers, json=data)
38    response.raise_for_status()  # Raise an exception for bad status codes (4xx or 5xx)
39
40    # Process the response
41    response_data = response.json()
42    print(json.dumps(response_data, indent=4))
43
44except requests.exceptions.RequestException as e:
45    print(f"Error making API request: {e}")
46    if hasattr(e, 'response') and e.response is not None:
47        try:
48            print(f"Error response: {e.response.json()}")
49        except json.JSONDecodeError:
50             print(f"Error response (non-JSON): {e.response.text}")
51
52
200Response
Copy
1{
2  "first": [
3    {
4      "name": "Sun",
5      "full_degree": 301.0791,
6      "norm_degree": 1.0791,
7      "speed": 1.0172,
8      "is_retro": "false",
9      "sign_id": 11,
10      "sign": "Aquarius",
11      "house": 4
12    },
13    {
14      "name": "Moon",
15      "full_degree": 149.1477,
16      "norm_degree": 29.1477,
17      "speed": 14.9982,
18      "is_retro": "false",
19      "sign_id": 5,
20      "sign": "Leo",
21      "house": 10
22    },
23    {
24      "name": "Mars",
25      "full_degree": 279.2969,
26      "norm_degree": 9.2969,
27      "speed": 0.7498,
28      "is_retro": "false",
29      "sign_id": 10,
30      "sign": "Capricorn",
31      "house": 3
32    },
33    {
34      "name": "Mercury",
35      "full_degree": 287.3857,
36      "norm_degree": 17.3857,
37      "speed": 1.5342,
38      "is_retro": "false",
39      "sign_id": 10,
40      "sign": "Capricorn",
41      "house": 3
42    },
43    {
44      "name": "Jupiter",
45      "full_degree": 163.8557,
46      "norm_degree": 13.8557,
47      "speed": -0.0689,
48      "is_retro": "true",
49      "sign_id": 6,
50      "sign": "Virgo",
51      "house": 11
52    },
53    {
54      "name": "Venus",
55      "full_degree": 265.8053,
56      "norm_degree": 25.8053,
57      "speed": 1.2231,
58      "is_retro": "false",
59      "sign_id": 9,
60      "sign": "Sagittarius",
61      "house": 2
62    },
63    {
64      "name": "Saturn",
65      "full_degree": 308.2772,
66      "norm_degree": 8.2772,
67      "speed": 0.119,
68      "is_retro": "false",
69      "sign_id": 11,
70      "sign": "Aquarius",
71      "house": 4
72    },
73    {
74      "name": "Uranus",
75      "full_degree": 284.9176,
76      "norm_degree": 14.9176,
77      "speed": 0.0579,
78      "is_retro": "false",
79      "sign_id": 10,
80      "sign": "Capricorn",
81      "house": 3
82    },
83    {
84      "name": "Neptune",
85      "full_degree": 287.0036,
86      "norm_degree": 17.0036,
87      "speed": 0.037,
88      "is_retro": "false",
89      "sign_id": 10,
90      "sign": "Capricorn",
91      "house": 3
92    },
93    {
94      "name": "Pluto",
95      "full_degree": 232.6143,
96      "norm_degree": 22.6143,
97      "speed": 0.0198,
98      "is_retro": "false",
99      "sign_id": 8,
100      "sign": "Scorpio",
101      "house": 1
102    },
103    {
104      "name": "Node",
105      "full_degree": 278.7016,
106      "norm_degree": 8.7016,
107      "speed": -0.053,
108      "is_retro": "true",
109      "sign_id": 10,
110      "sign": "Capricorn",
111      "house": 3
112    },
113    {
114      "name": "Chiron",
115      "full_degree": 126.9041,
116      "norm_degree": 6.9041,
117      "speed": -0.0737,
118      "is_retro": "true",
119      "sign_id": 5,
120      "sign": "Leo",
121      "house": 10
122    },
123    {
124      "name": "Part of Fortune",
125      "full_degree": 80.7996,
126      "norm_degree": 20.7996,
127      "speed": 0,
128      "is_retro": "false",
129      "sign_id": 3,
130      "sign": "Gemini",
131      "house": 8
132    }
133  ],
134  "second": [
135    {
136      "name": "Sun",
137      "full_degree": 351.8862,
138      "norm_degree": 21.8862,
139      "speed": 0.9974,
140      "is_retro": "false",
141      "sign_id": 12,
142      "sign": "Pisces",
143      "house": 5
144    },
145    {
146      "name": "Moon",
147      "full_degree": 186.4311,
148      "norm_degree": 6.4311,
149      "speed": 12.2517,
150      "is_retro": "false",
151      "sign_id": 7,
152      "sign": "Libra",
153      "house": 12
154    },
155    {
156      "name": "Mars",
157      "full_degree": 300.7955,
158      "norm_degree": 0.7955,
159      "speed": 0.74,
160      "is_retro": "false",
161      "sign_id": 11,
162      "sign": "Aquarius",
163      "house": 4
164    },
165    {
166      "name": "Mercury",
167      "full_degree": 346.0088,
168      "norm_degree": 16.0088,
169      "speed": 1.8595,
170      "is_retro": "false",
171      "sign_id": 12,
172      "sign": "Pisces",
173      "house": 5
174    },
175    {
176      "name": "Jupiter",
177      "full_degree": 91.2252,
178      "norm_degree": 1.2252,
179      "speed": 0.0515,
180      "is_retro": "false",
181      "sign_id": 4,
182      "sign": "Cancer",
183      "house": 9
184    },
185    {
186      "name": "Venus",
187      "full_degree": 306.8158,
188      "norm_degree": 6.8158,
189      "speed": 0.8231,
190      "is_retro": "false",
191      "sign_id": 11,
192      "sign": "Aquarius",
193      "house": 4
194    },
195    {
196      "name": "Saturn",
197      "full_degree": 293.1218,
198      "norm_degree": 23.1218,
199      "speed": 0.079,
200      "is_retro": "false",
201      "sign_id": 10,
202      "sign": "Capricorn",
203      "house": 3
204    },
205    {
206      "name": "Uranus",
207      "full_degree": 279.1479,
208      "norm_degree": 9.1479,
209      "speed": 0.0271,
210      "is_retro": "false",
211      "sign_id": 10,
212      "sign": "Capricorn",
213      "house": 3
214    },
215    {
216      "name": "Neptune",
217      "full_degree": 284.2434,
218      "norm_degree": 14.2434,
219      "speed": 0.0187,
220      "is_retro": "false",
221      "sign_id": 10,
222      "sign": "Capricorn",
223      "house": 3
224    },
225    {
226      "name": "Pluto",
227      "full_degree": 227.6531,
228      "norm_degree": 17.6531,
229      "speed": -0.0122,
230      "is_retro": "true",
231      "sign_id": 8,
232      "sign": "Scorpio",
233      "house": 1
234    },
235    {
236      "name": "Node",
237      "full_degree": 314.7158,
238      "norm_degree": 14.7158,
239      "speed": -0.053,
240      "is_retro": "true",
241      "sign_id": 11,
242      "sign": "Aquarius",
243      "house": 4
244    },
245    {
246      "name": "Chiron",
247      "full_degree": 100.5724,
248      "norm_degree": 10.5724,
249      "speed": -0.0039,
250      "is_retro": "true",
251      "sign_id": 4,
252      "sign": "Cancer",
253      "house": 9
254    },
255    {
256      "name": "Part of Fortune",
257      "full_degree": 67.9869,
258      "norm_degree": 7.9869,
259      "speed": 0,
260      "is_retro": "false",
261      "sign_id": 3,
262      "sign": "Gemini",
263      "house": 8
264    }
265  ],
266  "composite": {
267    "planets": [
268      {
269        "name": "Sun",
270        "full_degree": 326.48265,
271        "norm_degree": 26.4826,
272        "sign_id": 11,
273        "sign": "Aquarius",
274        "house": 4
275      },
276      {
277        "name": "Moon",
278        "full_degree": 167.7894,
279        "norm_degree": 17.7894,
280        "sign_id": 6,
281        "sign": "Virgo",
282        "house": 11
283      },
284      {
285        "name": "Mars",
286        "full_degree": 290.0462,
287        "norm_degree": 20.0462,
288        "sign_id": 10,
289        "sign": "Capricorn",
290        "house": 3
291      },
292      {
293        "name": "Mercury",
294        "full_degree": 316.69725,
295        "norm_degree": 16.6972,
296        "sign_id": 11,
297        "sign": "Aquarius",
298        "house": 4
299      },
300      {
301        "name": "Jupiter",
302        "full_degree": 127.54045,
303        "norm_degree": 7.5405,
304        "sign_id": 5,
305        "sign": "Leo",
306        "house": 10
307      },
308      {
309        "name": "Venus",
310        "full_degree": 286.31055000000003,
311        "norm_degree": 16.3106,
312        "sign_id": 10,
313        "sign": "Capricorn",
314        "house": 3
315      },
316      {
317        "name": "Saturn",
318        "full_degree": 300.6995,
319        "norm_degree": 0.6995,
320        "sign_id": 11,
321        "sign": "Aquarius",
322        "house": 4
323      },
324      {
325        "name": "Uranus",
326        "full_degree": 282.03274999999996,
327        "norm_degree": 12.0327,
328        "sign_id": 10,
329        "sign": "Capricorn",
330        "house": 3
331      },
332      {
333        "name": "Neptune",
334        "full_degree": 285.62350000000004,
335        "norm_degree": 15.6235,
336        "sign_id": 10,
337        "sign": "Capricorn",
338        "house": 3
339      },
340      {
341        "name": "Pluto",
342        "full_degree": 230.13369999999998,
343        "norm_degree": 20.1337,
344        "sign_id": 8,
345        "sign": "Scorpio",
346        "house": 1
347      },
348      {
349        "name": "Node",
350        "full_degree": 296.7087,
351        "norm_degree": 26.7087,
352        "sign_id": 10,
353        "sign": "Capricorn",
354        "house": 3
355      },
356      {
357        "name": "Chiron",
358        "full_degree": 113.73825,
359        "norm_degree": 23.7382,
360        "sign_id": 4,
361        "sign": "Cancer",
362        "house": 9
363      },
364      {
365        "name": "Part of Fortune",
366        "full_degree": 74.39325,
367        "norm_degree": 14.3932,
368        "sign_id": 3,
369        "sign": "Gemini",
370        "house": 8
371      }
372    ],
373    "houses": [
374      {
375        "house": 1,
376        "sign": "Scorpio",
377        "degree": 233.08651500000002
378      },
379      {
380        "house": 2,
381        "sign": "Sagittarius",
382        "degree": 262.438315
383      },
384      {
385        "house": 3,
386        "sign": "Capricorn",
387        "degree": 293.35562500000003
388      },
389      {
390        "house": 4,
391        "sign": "Aquarius",
392        "degree": 325.84093
393      },
394      {
395        "house": 5,
396        "sign": "Pisces",
397        "degree": 358.03228
398      },
399      {
400        "house": 6,
401        "sign": "Aries",
402        "degree": 27.328290000000003
403      },
404      {
405        "house": 7,
406        "sign": "Taurus",
407        "degree": 53.086515000000006
408      },
409      {
410        "house": 8,
411        "sign": "Gemini",
412        "degree": 82.438315
413      },
414      {
415        "house": 9,
416        "sign": "Cancer",
417        "degree": 113.355625
418      },
419      {
420        "house": 10,
421        "sign": "Leo",
422        "degree": 145.84093000000001
423      },
424      {
425        "house": 11,
426        "sign": "Virgo",
427        "degree": 178.03228000000001
428      },
429      {
430        "house": 12,
431        "sign": "Libra",
432        "degree": 207.32829
433      }
434    ],
435    "ascendant": 233.08651500000002,
436    "midheaven": 145.84093000000001,
437    "aspects": [
438      {
439        "aspecting_planet": "Sun",
440        "aspected_planet": "Venus",
441        "aspecting_planet_id": 0,
442        "aspected_planet_id": 5,
443        "type": "Semi Sqaure",
444        "orb": 4.83,
445        "diff": 40.17
446      },
447      {
448        "aspecting_planet": "Sun",
449        "aspected_planet": "Saturn",
450        "aspecting_planet_id": 0,
451        "aspected_planet_id": 6,
452        "type": "Semi Sextile",
453        "orb": 4.22,
454        "diff": 25.78
455      },
456      {
457        "aspecting_planet": "Sun",
458        "aspected_planet": "Uranus",
459        "aspecting_planet_id": 0,
460        "aspected_planet_id": 7,
461        "type": "Semi Sqaure",
462        "orb": 0.55,
463        "diff": 44.45
464      },
465      {
466        "aspecting_planet": "Sun",
467        "aspected_planet": "Neptune",
468        "aspecting_planet_id": 0,
469        "aspected_planet_id": 8,
470        "type": "Semi Sqaure",
471        "orb": 4.14,
472        "diff": 40.86
473      },
474      {
475        "aspecting_planet": "Sun",
476        "aspected_planet": "Node",
477        "aspecting_planet_id": 0,
478        "aspected_planet_id": 10,
479        "type": "Semi Sextile",
480        "orb": 0.23,
481        "diff": 29.77
482      },
483      {
484        "aspecting_planet": "Sun",
485        "aspected_planet": "Chiron",
486        "aspecting_planet_id": 0,
487        "aspected_planet_id": 11,
488        "type": "Quincunx",
489        "orb": 2.74,
490        "diff": 147.26
491      },
492      {
493        "aspecting_planet": "Sun",
494        "aspected_planet": "Ascendant",
495        "aspecting_planet_id": 0,
496        "aspected_planet_id": 13,
497        "type": "Square",
498        "orb": 3.4,
499        "diff": 93.4
500      },
501      {
502        "aspecting_planet": "Sun",
503        "aspected_planet": "Midheaven",
504        "aspecting_planet_id": 0,
505        "aspected_planet_id": 14,
506        "type": "Opposition",
507        "orb": 0.64,
508        "diff": 179.36
509      },
510      {
511        "aspecting_planet": "Moon",
512        "aspected_planet": "Mars",
513        "aspecting_planet_id": 1,
514        "aspected_planet_id": 2,
515        "type": "Trine",
516        "orb": 2.26,
517        "diff": 122.26
518      },
519      {
520        "aspecting_planet": "Moon",
521        "aspected_planet": "Mercury",
522        "aspecting_planet_id": 1,
523        "aspected_planet_id": 3,
524        "type": "Quincunx",
525        "orb": 1.09,
526        "diff": 148.91
527      },
528      {
529        "aspecting_planet": "Moon",
530        "aspected_planet": "Jupiter",
531        "aspecting_planet_id": 1,
532        "aspected_planet_id": 4,
533        "type": "Semi Sqaure",
534        "orb": 4.75,
535        "diff": 40.25
536      },
537      {
538        "aspecting_planet": "Moon",
539        "aspected_planet": "Venus",
540        "aspecting_planet_id": 1,
541        "aspected_planet_id": 5,
542        "type": "Trine",
543        "orb": 1.48,
544        "diff": 118.52
545      },
546      {
547        "aspecting_planet": "Moon",
548        "aspected_planet": "Uranus",
549        "aspecting_planet_id": 1,
550        "aspected_planet_id": 7,
551        "type": "Trine",
552        "orb": 5.76,
553        "diff": 114.24
554      },
555      {
556        "aspecting_planet": "Moon",
557        "aspected_planet": "Neptune",
558        "aspecting_planet_id": 1,
559        "aspected_planet_id": 8,
560        "type": "Trine",
561        "orb": 2.17,
562        "diff": 117.83
563      },
564      {
565        "aspecting_planet": "Moon",
566        "aspected_planet": "Pluto",
567        "aspecting_planet_id": 1,
568        "aspected_planet_id": 9,
569        "type": "Sextile",
570        "orb": 2.34,
571        "diff": 62.34
572      },
573      {
574        "aspecting_planet": "Moon",
575        "aspected_planet": "Chiron",
576        "aspecting_planet_id": 1,
577        "aspected_planet_id": 11,
578        "type": "Sextile",
579        "orb": 5.95,
580        "diff": 54.05
581      },
582      {
583        "aspecting_planet": "Moon",
584        "aspected_planet": "Ascendant",
585        "aspecting_planet_id": 1,
586        "aspected_planet_id": 13,
587        "type": "Sextile",
588        "orb": 5.3,
589        "diff": 65.3
590      },
591      {
592        "aspecting_planet": "Mars",
593        "aspected_planet": "Mercury",
594        "aspecting_planet_id": 2,
595        "aspected_planet_id": 3,
596        "type": "Semi Sextile",
597        "orb": 3.35,
598        "diff": 26.65
599      },
600      {
601        "aspecting_planet": "Mars",
602        "aspected_planet": "Venus",
603        "aspecting_planet_id": 2,
604        "aspected_planet_id": 5,
605        "type": "Conjunction",
606        "orb": 3.74,
607        "diff": 3.74
608      },
609      {
610        "aspecting_planet": "Mars",
611        "aspected_planet": "Neptune",
612        "aspecting_planet_id": 2,
613        "aspected_planet_id": 8,
614        "type": "Conjunction",
615        "orb": 4.42,
616        "diff": 4.42
617      },
618      {
619        "aspecting_planet": "Mars",
620        "aspected_planet": "Pluto",
621        "aspecting_planet_id": 2,
622        "aspected_planet_id": 9,
623        "type": "Sextile",
624        "orb": 0.09,
625        "diff": 59.91
626      },
627      {
628        "aspecting_planet": "Mars",
629        "aspected_planet": "Chiron",
630        "aspecting_planet_id": 2,
631        "aspected_planet_id": 11,
632        "type": "Opposition",
633        "orb": 3.69,
634        "diff": 176.31
635      },
636      {
637        "aspecting_planet": "Mars",
638        "aspected_planet": "Part of Fortune",
639        "aspecting_planet_id": 2,
640        "aspected_planet_id": 12,
641        "type": "Quincunx",
642        "orb": 5.65,
643        "diff": 144.35
644      },
645      {
646        "aspecting_planet": "Mars",
647        "aspected_planet": "Ascendant",
648        "aspecting_planet_id": 2,
649        "aspected_planet_id": 13,
650        "type": "Sextile",
651        "orb": 3.04,
652        "diff": 56.96
653      },
654      {
655        "aspecting_planet": "Mars",
656        "aspected_planet": "Midheaven",
657        "aspecting_planet_id": 2,
658        "aspected_planet_id": 14,
659        "type": "Quincunx",
660        "orb": 5.79,
661        "diff": 144.21
662      },
663      {
664        "aspecting_planet": "Mercury",
665        "aspected_planet": "Venus",
666        "aspecting_planet_id": 3,
667        "aspected_planet_id": 5,
668        "type": "Semi Sextile",
669        "orb": 0.39,
670        "diff": 30.39
671      },
672      {
673        "aspecting_planet": "Mercury",
674        "aspected_planet": "Uranus",
675        "aspecting_planet_id": 3,
676        "aspected_planet_id": 7,
677        "type": "Semi Sextile",
678        "orb": 4.66,
679        "diff": 34.66
680      },
681      {
682        "aspecting_planet": "Mercury",
683        "aspected_planet": "Neptune",
684        "aspecting_planet_id": 3,
685        "aspected_planet_id": 8,
686        "type": "Semi Sextile",
687        "orb": 1.07,
688        "diff": 31.07
689      },
690      {
691        "aspecting_planet": "Mercury",
692        "aspected_planet": "Pluto",
693        "aspecting_planet_id": 3,
694        "aspected_planet_id": 9,
695        "type": "Square",
696        "orb": 3.44,
697        "diff": 86.56
698      },
699      {
700        "aspecting_planet": "Mercury",
701        "aspected_planet": "Part of Fortune",
702        "aspecting_planet_id": 3,
703        "aspected_planet_id": 12,
704        "type": "Trine",
705        "orb": 2.3,
706        "diff": 117.7
707      },
708      {
709        "aspecting_planet": "Jupiter",
710        "aspected_planet": "Uranus",
711        "aspecting_planet_id": 4,
712        "aspected_planet_id": 7,
713        "type": "Quincunx",
714        "orb": 4.49,
715        "diff": 154.49
716      },
717      {
718        "aspecting_planet": "Venus",
719        "aspected_planet": "Uranus",
720        "aspecting_planet_id": 5,
721        "aspected_planet_id": 7,
722        "type": "Conjunction",
723        "orb": 4.28,
724        "diff": 4.28
725      },
726      {
727        "aspecting_planet": "Venus",
728        "aspected_planet": "Neptune",
729        "aspecting_planet_id": 5,
730        "aspected_planet_id": 8,
731        "type": "Conjunction",
732        "orb": 0.69,
733        "diff": 0.69
734      },
735      {
736        "aspecting_planet": "Venus",
737        "aspected_planet": "Pluto",
738        "aspecting_planet_id": 5,
739        "aspected_planet_id": 9,
740        "type": "Sextile",
741        "orb": 3.82,
742        "diff": 56.18
743      },
744      {
745        "aspecting_planet": "Venus",
746        "aspected_planet": "Part of Fortune",
747        "aspecting_planet_id": 5,
748        "aspected_planet_id": 12,
749        "type": "Quincunx",
750        "orb": 1.92,
751        "diff": 148.08
752      },
753      {
754        "aspecting_planet": "Saturn",
755        "aspected_planet": "Pluto",
756        "aspecting_planet_id": 6,
757        "aspected_planet_id": 9,
758        "type": "Quintile",
759        "orb": 1.43,
760        "diff": 70.57
761      },
762      {
763        "aspecting_planet": "Saturn",
764        "aspected_planet": "Node",
765        "aspecting_planet_id": 6,
766        "aspected_planet_id": 10,
767        "type": "Conjunction",
768        "orb": 3.99,
769        "diff": 3.99
770      },
771      {
772        "aspecting_planet": "Saturn",
773        "aspected_planet": "Ascendant",
774        "aspecting_planet_id": 6,
775        "aspected_planet_id": 13,
776        "type": "Quintile",
777        "orb": 4.39,
778        "diff": 67.61
779      },
780      {
781        "aspecting_planet": "Saturn",
782        "aspected_planet": "Midheaven",
783        "aspecting_planet_id": 6,
784        "aspected_planet_id": 14,
785        "type": "Quincunx",
786        "orb": 4.86,
787        "diff": 154.86
788      },
789      {
790        "aspecting_planet": "Uranus",
791        "aspected_planet": "Neptune",
792        "aspecting_planet_id": 7,
793        "aspected_planet_id": 8,
794        "type": "Conjunction",
795        "orb": 3.59,
796        "diff": 3.59
797      },
798      {
799        "aspecting_planet": "Uranus",
800        "aspected_planet": "Part of Fortune",
801        "aspecting_planet_id": 7,
802        "aspected_planet_id": 12,
803        "type": "Quincunx",
804        "orb": 2.36,
805        "diff": 152.36
806      },
807      {
808        "aspecting_planet": "Uranus",
809        "aspected_planet": "Ascendant",
810        "aspecting_planet_id": 7,
811        "aspected_planet_id": 13,
812        "type": "Semi Sqaure",
813        "orb": 3.95,
814        "diff": 48.95
815      },
816      {
817        "aspecting_planet": "Neptune",
818        "aspected_planet": "Pluto",
819        "aspecting_planet_id": 8,
820        "aspected_planet_id": 9,
821        "type": "Sextile",
822        "orb": 4.51,
823        "diff": 55.49
824      },
825      {
826        "aspecting_planet": "Neptune",
827        "aspected_planet": "Part of Fortune",
828        "aspecting_planet_id": 8,
829        "aspected_planet_id": 12,
830        "type": "Quincunx",
831        "orb": 1.23,
832        "diff": 148.77
833      },
834      {
835        "aspecting_planet": "Pluto",
836        "aspected_planet": "Node",
837        "aspecting_planet_id": 9,
838        "aspected_planet_id": 10,
839        "type": "Quintile",
840        "orb": 5.42,
841        "diff": 66.58
842      },
843      {
844        "aspecting_planet": "Pluto",
845        "aspected_planet": "Chiron",
846        "aspecting_planet_id": 9,
847        "aspected_planet_id": 11,
848        "type": "Trine",
849        "orb": 3.6,
850        "diff": 116.4
851      },
852      {
853        "aspecting_planet": "Pluto",
854        "aspected_planet": "Part of Fortune",
855        "aspecting_planet_id": 9,
856        "aspected_planet_id": 12,
857        "type": "Quincunx",
858        "orb": 5.74,
859        "diff": 155.74
860      },
861      {
862        "aspecting_planet": "Pluto",
863        "aspected_planet": "Ascendant",
864        "aspecting_planet_id": 9,
865        "aspected_planet_id": 13,
866        "type": "Conjunction",
867        "orb": 2.95,
868        "diff": 2.95
869      },
870      {
871        "aspecting_planet": "Pluto",
872        "aspected_planet": "Midheaven",
873        "aspecting_planet_id": 9,
874        "aspected_planet_id": 14,
875        "type": "Square",
876        "orb": 5.71,
877        "diff": 84.29
878      },
879      {
880        "aspecting_planet": "Node",
881        "aspected_planet": "Chiron",
882        "aspecting_planet_id": 10,
883        "aspected_planet_id": 11,
884        "type": "Opposition",
885        "orb": 2.97,
886        "diff": 177.03
887      },
888      {
889        "aspecting_planet": "Node",
890        "aspected_planet": "Ascendant",
891        "aspecting_planet_id": 10,
892        "aspected_planet_id": 13,
893        "type": "Sextile",
894        "orb": 3.62,
895        "diff": 63.62
896      },
897      {
898        "aspecting_planet": "Node",
899        "aspected_planet": "Midheaven",
900        "aspecting_planet_id": 10,
901        "aspected_planet_id": 14,
902        "type": "Quincunx",
903        "orb": 0.87,
904        "diff": 150.87
905      },
906      {
907        "aspecting_planet": "Chiron",
908        "aspected_planet": "Part of Fortune",
909        "aspecting_planet_id": 11,
910        "aspected_planet_id": 12,
911        "type": "Semi Sqaure",
912        "orb": 5.66,
913        "diff": 39.35
914      },
915      {
916        "aspecting_planet": "Chiron",
917        "aspected_planet": "Ascendant",
918        "aspecting_planet_id": 11,
919        "aspected_planet_id": 13,
920        "type": "Trine",
921        "orb": 0.65,
922        "diff": 119.35
923      },
924      {
925        "aspecting_planet": "Chiron",
926        "aspected_planet": "Midheaven",
927        "aspecting_planet_id": 11,
928        "aspected_planet_id": 14,
929        "type": "Semi Sextile",
930        "orb": 2.1,
931        "diff": 32.1
932      },
933      {
934        "aspecting_planet": "Part of Fortune",
935        "aspected_planet": "Midheaven",
936        "aspecting_planet_id": 12,
937        "aspected_planet_id": 14,
938        "type": "Quintile",
939        "orb": 0.55,
940        "diff": 71.45
941      },
942      {
943        "aspecting_planet": "Ascendant",
944        "aspected_planet": "Midheaven",
945        "aspecting_planet_id": 13,
946        "aspected_planet_id": 14,
947        "type": "Square",
948        "orb": 2.75,
949        "diff": 87.25
950      }
951    ]
952  }
953}

Request Headers

Authorization

string

required

Basic Authorization via header

Accept-Language

string

Preferred language for the response content

Properties

English - enSpanish - esPortuguese - ptFrench - frItalian - itGerman - deRussian - ru

Request Parameters

p_day

int

required

Day of birth, eg: 10

p_month

int

required

Month of birth, eg: 5

p_year

int

required

Year of birth, eg: 1990

p_hour

int

required

Hour of birth, eg: 11

p_min

int

required

Minute of birth, eg: 55

p_lat

float

required

Latitude, eg: 19.2056

p_lon

float

required

Longitude, eg: 25.2056

p_tzone

float

required

Timezone, eg: 5.5

s_day

int

required

Day of birth, eg: 10

s_month

int

required

Month of birth, eg: 5

s_year

int

required

Year of birth, eg: 1990

s_hour

int

required

Hour of birth, eg: 11

s_min

int

required

Minute of birth, eg: 55

s_lat

float

required

Latitude, eg: 19.2056

s_lon

float

required

Longitude, eg: 25.2056

s_tzone

float

required

Timezone, eg: 5.5

Errors

400
Bad Request

Something is wrong with your request format or parameters.

401
Unauthorized

Your API key is missing or invalid.

403
Forbidden

You don't have permission to access this specific resource.

404
Not Found

The API endpoint you're trying to reach doesn't exist.

500
Internal Server Error

Our server is having a temporary glitch.