AstrologyAPI

Composite Horoscope

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

POST/composite_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/composite_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": 49.3456,
6      "norm_degree": 19.3456,
7      "speed": 0.9662,
8      "is_retro": "false",
9      "sign_id": 2,
10      "sign": "Taurus",
11      "house": 11
12    },
13    {
14      "name": "Moon",
15      "full_degree": 234.3018,
16      "norm_degree": 24.3018,
17      "speed": 11.8738,
18      "is_retro": "false",
19      "sign_id": 8,
20      "sign": "Scorpio",
21      "house": 5
22    },
23    {
24      "name": "Mars",
25      "full_degree": 344.4427,
26      "norm_degree": 14.4427,
27      "speed": 0.7444,
28      "is_retro": "false",
29      "sign_id": 12,
30      "sign": "Pisces",
31      "house": 9
32    },
33    {
34      "name": "Mercury",
35      "full_degree": 39.6062,
36      "norm_degree": 9.6062,
37      "speed": -0.4706,
38      "is_retro": "true",
39      "sign_id": 2,
40      "sign": "Taurus",
41      "house": 11
42    },
43    {
44      "name": "Jupiter",
45      "full_degree": 98.5694,
46      "norm_degree": 8.5694,
47      "speed": 0.1823,
48      "is_retro": "false",
49      "sign_id": 4,
50      "sign": "Cancer",
51      "house": 1
52    },
53    {
54      "name": "Venus",
55      "full_degree": 6.8731,
56      "norm_degree": 6.8731,
57      "speed": 1.1315,
58      "is_retro": "false",
59      "sign_id": 1,
60      "sign": "Aries",
61      "house": 10
62    },
63    {
64      "name": "Saturn",
65      "full_degree": 295.3161,
66      "norm_degree": 25.3161,
67      "speed": -0.0086,
68      "is_retro": "true",
69      "sign_id": 10,
70      "sign": "Capricorn",
71      "house": 8
72    },
73    {
74      "name": "Uranus",
75      "full_degree": 279.3032,
76      "norm_degree": 9.3032,
77      "speed": -0.021,
78      "is_retro": "true",
79      "sign_id": 10,
80      "sign": "Capricorn",
81      "house": 7
82    },
83    {
84      "name": "Neptune",
85      "full_degree": 284.4237,
86      "norm_degree": 14.4237,
87      "speed": -0.0123,
88      "is_retro": "true",
89      "sign_id": 10,
90      "sign": "Capricorn",
91      "house": 7
92    },
93    {
94      "name": "Pluto",
95      "full_degree": 226.3134,
96      "norm_degree": 16.3134,
97      "speed": -0.028,
98      "is_retro": "true",
99      "sign_id": 8,
100      "sign": "Scorpio",
101      "house": 5
102    },
103    {
104      "name": "Node",
105      "full_degree": 310.9495,
106      "norm_degree": 10.9495,
107      "speed": -0.2274,
108      "is_retro": "true",
109      "sign_id": 11,
110      "sign": "Aquarius",
111      "house": 8
112    },
113    {
114      "name": "Chiron",
115      "full_degree": 102.8071,
116      "norm_degree": 12.8071,
117      "speed": 0.0749,
118      "is_retro": "false",
119      "sign_id": 4,
120      "sign": "Cancer",
121      "house": 1
122    },
123    {
124      "name": "Part of Fortune",
125      "full_degree": 273.0548,
126      "norm_degree": 3.0548,
127      "speed": 0,
128      "is_retro": "false",
129      "sign_id": 10,
130      "sign": "Capricorn",
131      "house": 7
132    }
133  ],
134  "second": [
135    {
136      "name": "Sun",
137      "full_degree": 49.4845,
138      "norm_degree": 19.4845,
139      "speed": 0.9662,
140      "is_retro": "false",
141      "sign_id": 2,
142      "sign": "Taurus",
143      "house": 10
144    },
145    {
146      "name": "Moon",
147      "full_degree": 236.0086,
148      "norm_degree": 26.0086,
149      "speed": 11.8736,
150      "is_retro": "false",
151      "sign_id": 8,
152      "sign": "Scorpio",
153      "house": 4
154    },
155    {
156      "name": "Mars",
157      "full_degree": 344.5497,
158      "norm_degree": 14.5497,
159      "speed": 0.7444,
160      "is_retro": "false",
161      "sign_id": 12,
162      "sign": "Pisces",
163      "house": 8
164    },
165    {
166      "name": "Mercury",
167      "full_degree": 39.5391,
168      "norm_degree": 9.5391,
169      "speed": -0.4627,
170      "is_retro": "true",
171      "sign_id": 2,
172      "sign": "Taurus",
173      "house": 9
174    },
175    {
176      "name": "Jupiter",
177      "full_degree": 98.5956,
178      "norm_degree": 8.5956,
179      "speed": 0.1825,
180      "is_retro": "false",
181      "sign_id": 4,
182      "sign": "Cancer",
183      "house": 11
184    },
185    {
186      "name": "Venus",
187      "full_degree": 7.0358,
188      "norm_degree": 7.0358,
189      "speed": 1.1318,
190      "is_retro": "false",
191      "sign_id": 1,
192      "sign": "Aries",
193      "house": 8
194    },
195    {
196      "name": "Saturn",
197      "full_degree": 295.3148,
198      "norm_degree": 25.3148,
199      "speed": -0.0088,
200      "is_retro": "true",
201      "sign_id": 10,
202      "sign": "Capricorn",
203      "house": 6
204    },
205    {
206      "name": "Uranus",
207      "full_degree": 279.3002,
208      "norm_degree": 9.3002,
209      "speed": -0.0211,
210      "is_retro": "true",
211      "sign_id": 10,
212      "sign": "Capricorn",
213      "house": 5
214    },
215    {
216      "name": "Neptune",
217      "full_degree": 284.4219,
218      "norm_degree": 14.4219,
219      "speed": -0.0124,
220      "is_retro": "true",
221      "sign_id": 10,
222      "sign": "Capricorn",
223      "house": 5
224    },
225    {
226      "name": "Pluto",
227      "full_degree": 226.3093,
228      "norm_degree": 16.3093,
229      "speed": -0.028,
230      "is_retro": "true",
231      "sign_id": 8,
232      "sign": "Scorpio",
233      "house": 4
234    },
235    {
236      "name": "Node",
237      "full_degree": 310.9169,
238      "norm_degree": 10.9169,
239      "speed": -0.2249,
240      "is_retro": "true",
241      "sign_id": 11,
242      "sign": "Aquarius",
243      "house": 6
244    },
245    {
246      "name": "Chiron",
247      "full_degree": 102.8179,
248      "norm_degree": 12.8179,
249      "speed": 0.075,
250      "is_retro": "false",
251      "sign_id": 4,
252      "sign": "Cancer",
253      "house": 11
254    },
255    {
256      "name": "Part of Fortune",
257      "full_degree": 321.1431,
258      "norm_degree": 21.1431,
259      "speed": 0,
260      "is_retro": "false",
261      "sign_id": 11,
262      "sign": "Aquarius",
263      "house": 7
264    }
265  ],
266  "composite": {
267    "planets": [
268      {
269        "name": "Sun",
270        "full_degree": 49.415049999999994,
271        "norm_degree": 19.415,
272        "sign_id": 2,
273        "sign": "Taurus",
274        "house": 11
275      },
276      {
277        "name": "Moon",
278        "full_degree": 235.15519999999998,
279        "norm_degree": 25.1552,
280        "sign_id": 8,
281        "sign": "Scorpio",
282        "house": 5
283      },
284      {
285        "name": "Mars",
286        "full_degree": 344.4962,
287        "norm_degree": 14.4962,
288        "sign_id": 12,
289        "sign": "Pisces",
290        "house": 9
291      },
292      {
293        "name": "Mercury",
294        "full_degree": 39.572649999999996,
295        "norm_degree": 9.5726,
296        "sign_id": 2,
297        "sign": "Taurus",
298        "house": 11
299      },
300      {
301        "name": "Jupiter",
302        "full_degree": 98.58250000000001,
303        "norm_degree": 8.5825,
304        "sign_id": 4,
305        "sign": "Cancer",
306        "house": 1
307      },
308      {
309        "name": "Venus",
310        "full_degree": 6.95445,
311        "norm_degree": 6.9544,
312        "sign_id": 1,
313        "sign": "Aries",
314        "house": 10
315      },
316      {
317        "name": "Saturn",
318        "full_degree": 295.31545,
319        "norm_degree": 25.3154,
320        "sign_id": 10,
321        "sign": "Capricorn",
322        "house": 7
323      },
324      {
325        "name": "Uranus",
326        "full_degree": 279.3017,
327        "norm_degree": 9.3017,
328        "sign_id": 10,
329        "sign": "Capricorn",
330        "house": 7
331      },
332      {
333        "name": "Neptune",
334        "full_degree": 284.4228,
335        "norm_degree": 14.4228,
336        "sign_id": 10,
337        "sign": "Capricorn",
338        "house": 7
339      },
340      {
341        "name": "Pluto",
342        "full_degree": 226.31135,
343        "norm_degree": 16.3114,
344        "sign_id": 8,
345        "sign": "Scorpio",
346        "house": 5
347      },
348      {
349        "name": "Node",
350        "full_degree": 310.9332,
351        "norm_degree": 10.9332,
352        "sign_id": 11,
353        "sign": "Aquarius",
354        "house": 8
355      },
356      {
357        "name": "Chiron",
358        "full_degree": 102.8125,
359        "norm_degree": 12.8125,
360        "sign_id": 4,
361        "sign": "Cancer",
362        "house": 1
363      },
364      {
365        "name": "Part of Fortune",
366        "full_degree": 297.09895,
367        "norm_degree": 27.099,
368        "sign_id": 10,
369        "sign": "Capricorn",
370        "house": 7
371      }
372    ],
373    "houses": [
374      {
375        "house": 1,
376        "sign": "Cancer",
377        "degree": 111.35880499999999
378      },
379      {
380        "house": 2,
381        "sign": "Leo",
382        "degree": 137.057925
383      },
384      {
385        "house": 3,
386        "sign": "Virgo",
387        "degree": 165.08345
388      },
389      {
390        "house": 4,
391        "sign": "Libra",
392        "degree": 195.95189
393      },
394      {
395        "house": 5,
396        "sign": "Scorpio",
397        "degree": 228.554535
398      },
399      {
400        "house": 6,
401        "sign": "Sagittarius",
402        "degree": 260.824945
403      },
404      {
405        "house": 7,
406        "sign": "Capricorn",
407        "degree": 291.35880499999996
408      },
409      {
410        "house": 8,
411        "sign": "Aquarius",
412        "degree": 317.057925
413      },
414      {
415        "house": 9,
416        "sign": "Virgo",
417        "degree": 165.08345
418      },
419      {
420        "house": 10,
421        "sign": "Libra",
422        "degree": 195.95189
423      },
424      {
425        "house": 11,
426        "sign": "Taurus",
427        "degree": 48.554535
428      },
429      {
430        "house": 12,
431        "sign": "Gemini",
432        "degree": 80.824945
433      }
434    ],
435    "ascendant": 111.35880499999999,
436    "midheaven": 195.95189,
437    "aspects": [
438      {
439        "aspecting_planet": "Sun",
440        "aspected_planet": "Moon",
441        "aspecting_planet_id": 0,
442        "aspected_planet_id": 1,
443        "type": "Opposition",
444        "orb": 5.74,
445        "diff": 174.26
446      },
447      {
448        "aspecting_planet": "Sun",
449        "aspected_planet": "Mars",
450        "aspecting_planet_id": 0,
451        "aspected_planet_id": 2,
452        "type": "Sextile",
453        "orb": 4.92,
454        "diff": 64.92
455      },
456      {
457        "aspecting_planet": "Sun",
458        "aspected_planet": "Mercury",
459        "aspecting_planet_id": 0,
460        "aspected_planet_id": 3,
461        "type": "Conjunction",
462        "orb": 9.84,
463        "diff": 9.84
464      },
465      {
466        "aspecting_planet": "Sun",
467        "aspected_planet": "Saturn",
468        "aspecting_planet_id": 0,
469        "aspected_planet_id": 6,
470        "type": "Trine",
471        "orb": 5.9,
472        "diff": 114.1
473      },
474      {
475        "aspecting_planet": "Sun",
476        "aspected_planet": "Neptune",
477        "aspecting_planet_id": 0,
478        "aspected_planet_id": 8,
479        "type": "Trine",
480        "orb": 4.99,
481        "diff": 124.99
482      },
483      {
484        "aspecting_planet": "Sun",
485        "aspected_planet": "Pluto",
486        "aspecting_planet_id": 0,
487        "aspected_planet_id": 9,
488        "type": "Opposition",
489        "orb": 3.1,
490        "diff": 176.9
491      },
492      {
493        "aspecting_planet": "Sun",
494        "aspected_planet": "Part of Fortune",
495        "aspecting_planet_id": 0,
496        "aspected_planet_id": 12,
497        "type": "Trine",
498        "orb": 7.68,
499        "diff": 112.32
500      },
501      {
502        "aspecting_planet": "Sun",
503        "aspected_planet": "Ascendant",
504        "aspecting_planet_id": 0,
505        "aspected_planet_id": 13,
506        "type": "Sextile",
507        "orb": 1.94,
508        "diff": 61.94
509      },
510      {
511        "aspecting_planet": "Moon",
512        "aspected_planet": "Saturn",
513        "aspecting_planet_id": 1,
514        "aspected_planet_id": 6,
515        "type": "Sextile",
516        "orb": 0.16,
517        "diff": 60.16
518      },
519      {
520        "aspecting_planet": "Moon",
521        "aspected_planet": "Pluto",
522        "aspecting_planet_id": 1,
523        "aspected_planet_id": 9,
524        "type": "Conjunction",
525        "orb": 8.84,
526        "diff": 8.84
527      },
528      {
529        "aspecting_planet": "Moon",
530        "aspected_planet": "Ascendant",
531        "aspecting_planet_id": 1,
532        "aspected_planet_id": 13,
533        "type": "Trine",
534        "orb": 3.8,
535        "diff": 123.8
536      },
537      {
538        "aspecting_planet": "Mars",
539        "aspected_planet": "Mercury",
540        "aspecting_planet_id": 2,
541        "aspected_planet_id": 3,
542        "type": "Sextile",
543        "orb": 4.92,
544        "diff": 55.08
545      },
546      {
547        "aspecting_planet": "Mars",
548        "aspected_planet": "Jupiter",
549        "aspecting_planet_id": 2,
550        "aspected_planet_id": 4,
551        "type": "Trine",
552        "orb": 5.91,
553        "diff": 114.09
554      },
555      {
556        "aspecting_planet": "Mars",
557        "aspected_planet": "Uranus",
558        "aspecting_planet_id": 2,
559        "aspected_planet_id": 7,
560        "type": "Sextile",
561        "orb": 5.19,
562        "diff": 65.19
563      },
564      {
565        "aspecting_planet": "Mars",
566        "aspected_planet": "Neptune",
567        "aspecting_planet_id": 2,
568        "aspected_planet_id": 8,
569        "type": "Sextile",
570        "orb": 0.07,
571        "diff": 60.07
572      },
573      {
574        "aspecting_planet": "Mars",
575        "aspected_planet": "Pluto",
576        "aspecting_planet_id": 2,
577        "aspected_planet_id": 9,
578        "type": "Trine",
579        "orb": 1.82,
580        "diff": 118.18
581      },
582      {
583        "aspecting_planet": "Mars",
584        "aspected_planet": "Chiron",
585        "aspecting_planet_id": 2,
586        "aspected_planet_id": 11,
587        "type": "Trine",
588        "orb": 1.68,
589        "diff": 118.32
590      },
591      {
592        "aspecting_planet": "Mars",
593        "aspected_planet": "Ascendant",
594        "aspecting_planet_id": 2,
595        "aspected_planet_id": 13,
596        "type": "Trine",
597        "orb": 6.86,
598        "diff": 126.86
599      },
600      {
601        "aspecting_planet": "Mercury",
602        "aspected_planet": "Jupiter",
603        "aspecting_planet_id": 3,
604        "aspected_planet_id": 4,
605        "type": "Sextile",
606        "orb": 0.99,
607        "diff": 59.01
608      },
609      {
610        "aspecting_planet": "Mercury",
611        "aspected_planet": "Uranus",
612        "aspecting_planet_id": 3,
613        "aspected_planet_id": 7,
614        "type": "Trine",
615        "orb": 0.27,
616        "diff": 120.27
617      },
618      {
619        "aspecting_planet": "Mercury",
620        "aspected_planet": "Neptune",
621        "aspecting_planet_id": 3,
622        "aspected_planet_id": 8,
623        "type": "Trine",
624        "orb": 4.85,
625        "diff": 115.15
626      },
627      {
628        "aspecting_planet": "Mercury",
629        "aspected_planet": "Pluto",
630        "aspecting_planet_id": 3,
631        "aspected_planet_id": 9,
632        "type": "Opposition",
633        "orb": 6.74,
634        "diff": 173.26
635      },
636      {
637        "aspecting_planet": "Mercury",
638        "aspected_planet": "Node",
639        "aspecting_planet_id": 3,
640        "aspected_planet_id": 10,
641        "type": "Square",
642        "orb": 1.36,
643        "diff": 88.64
644      },
645      {
646        "aspecting_planet": "Mercury",
647        "aspected_planet": "Chiron",
648        "aspecting_planet_id": 3,
649        "aspected_planet_id": 11,
650        "type": "Sextile",
651        "orb": 3.24,
652        "diff": 63.24
653      },
654      {
655        "aspecting_planet": "Jupiter",
656        "aspected_planet": "Venus",
657        "aspecting_planet_id": 4,
658        "aspected_planet_id": 5,
659        "type": "Square",
660        "orb": 1.63,
661        "diff": 91.63
662      },
663      {
664        "aspecting_planet": "Jupiter",
665        "aspected_planet": "Uranus",
666        "aspecting_planet_id": 4,
667        "aspected_planet_id": 7,
668        "type": "Opposition",
669        "orb": 0.72,
670        "diff": 179.28
671      },
672      {
673        "aspecting_planet": "Jupiter",
674        "aspected_planet": "Neptune",
675        "aspecting_planet_id": 4,
676        "aspected_planet_id": 8,
677        "type": "Opposition",
678        "orb": 5.84,
679        "diff": 174.16
680      },
681      {
682        "aspecting_planet": "Jupiter",
683        "aspected_planet": "Pluto",
684        "aspecting_planet_id": 4,
685        "aspected_planet_id": 9,
686        "type": "Trine",
687        "orb": 7.73,
688        "diff": 127.73
689      },
690      {
691        "aspecting_planet": "Jupiter",
692        "aspected_planet": "Chiron",
693        "aspecting_planet_id": 4,
694        "aspected_planet_id": 11,
695        "type": "Conjunction",
696        "orb": 4.23,
697        "diff": 4.23
698      },
699      {
700        "aspecting_planet": "Jupiter",
701        "aspected_planet": "Midheaven",
702        "aspecting_planet_id": 4,
703        "aspected_planet_id": 14,
704        "type": "Square",
705        "orb": 7.37,
706        "diff": 97.37
707      },
708      {
709        "aspecting_planet": "Venus",
710        "aspected_planet": "Uranus",
711        "aspecting_planet_id": 5,
712        "aspected_planet_id": 7,
713        "type": "Square",
714        "orb": 2.35,
715        "diff": 87.65
716      },
717      {
718        "aspecting_planet": "Venus",
719        "aspected_planet": "Neptune",
720        "aspecting_planet_id": 5,
721        "aspected_planet_id": 8,
722        "type": "Square",
723        "orb": 7.47,
724        "diff": 82.53
725      },
726      {
727        "aspecting_planet": "Venus",
728        "aspected_planet": "Node",
729        "aspecting_planet_id": 5,
730        "aspected_planet_id": 10,
731        "type": "Sextile",
732        "orb": 3.98,
733        "diff": 56.02
734      },
735      {
736        "aspecting_planet": "Venus",
737        "aspected_planet": "Chiron",
738        "aspecting_planet_id": 5,
739        "aspected_planet_id": 11,
740        "type": "Square",
741        "orb": 5.86,
742        "diff": 95.86
743      },
744      {
745        "aspecting_planet": "Venus",
746        "aspected_planet": "Midheaven",
747        "aspecting_planet_id": 5,
748        "aspected_planet_id": 14,
749        "type": "Opposition",
750        "orb": 9,
751        "diff": 171
752      },
753      {
754        "aspecting_planet": "Saturn",
755        "aspected_planet": "Part of Fortune",
756        "aspecting_planet_id": 6,
757        "aspected_planet_id": 12,
758        "type": "Conjunction",
759        "orb": 1.78,
760        "diff": 1.78
761      },
762      {
763        "aspecting_planet": "Saturn",
764        "aspected_planet": "Ascendant",
765        "aspecting_planet_id": 6,
766        "aspected_planet_id": 13,
767        "type": "Opposition",
768        "orb": 3.96,
769        "diff": 176.04
770      },
771      {
772        "aspecting_planet": "Uranus",
773        "aspected_planet": "Neptune",
774        "aspecting_planet_id": 7,
775        "aspected_planet_id": 8,
776        "type": "Conjunction",
777        "orb": 5.12,
778        "diff": 5.12
779      },
780      {
781        "aspecting_planet": "Uranus",
782        "aspected_planet": "Chiron",
783        "aspecting_planet_id": 7,
784        "aspected_planet_id": 11,
785        "type": "Opposition",
786        "orb": 3.51,
787        "diff": 176.49
788      },
789      {
790        "aspecting_planet": "Uranus",
791        "aspected_planet": "Midheaven",
792        "aspecting_planet_id": 7,
793        "aspected_planet_id": 14,
794        "type": "Square",
795        "orb": 6.65,
796        "diff": 83.35
797      },
798      {
799        "aspecting_planet": "Neptune",
800        "aspected_planet": "Pluto",
801        "aspecting_planet_id": 8,
802        "aspected_planet_id": 9,
803        "type": "Sextile",
804        "orb": 1.89,
805        "diff": 58.11
806      },
807      {
808        "aspecting_planet": "Neptune",
809        "aspected_planet": "Chiron",
810        "aspecting_planet_id": 8,
811        "aspected_planet_id": 11,
812        "type": "Opposition",
813        "orb": 1.61,
814        "diff": 178.39
815      },
816      {
817        "aspecting_planet": "Neptune",
818        "aspected_planet": "Ascendant",
819        "aspecting_planet_id": 8,
820        "aspected_planet_id": 13,
821        "type": "Opposition",
822        "orb": 6.94,
823        "diff": 173.06
824      },
825      {
826        "aspecting_planet": "Neptune",
827        "aspected_planet": "Midheaven",
828        "aspecting_planet_id": 8,
829        "aspected_planet_id": 14,
830        "type": "Square",
831        "orb": 1.53,
832        "diff": 88.47
833      },
834      {
835        "aspecting_planet": "Pluto",
836        "aspected_planet": "Node",
837        "aspecting_planet_id": 9,
838        "aspected_planet_id": 10,
839        "type": "Square",
840        "orb": 5.38,
841        "diff": 84.62
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.5,
850        "diff": 123.5
851      },
852      {
853        "aspecting_planet": "Pluto",
854        "aspected_planet": "Ascendant",
855        "aspecting_planet_id": 9,
856        "aspected_planet_id": 13,
857        "type": "Trine",
858        "orb": 5.05,
859        "diff": 114.95
860      },
861      {
862        "aspecting_planet": "Node",
863        "aspected_planet": "Midheaven",
864        "aspecting_planet_id": 10,
865        "aspected_planet_id": 14,
866        "type": "Trine",
867        "orb": 5.02,
868        "diff": 114.98
869      },
870      {
871        "aspecting_planet": "Chiron",
872        "aspected_planet": "Ascendant",
873        "aspecting_planet_id": 11,
874        "aspected_planet_id": 13,
875        "type": "Conjunction",
876        "orb": 8.55,
877        "diff": 8.55
878      },
879      {
880        "aspecting_planet": "Chiron",
881        "aspected_planet": "Midheaven",
882        "aspecting_planet_id": 11,
883        "aspected_planet_id": 14,
884        "type": "Square",
885        "orb": 3.14,
886        "diff": 93.14
887      },
888      {
889        "aspecting_planet": "Ascendant",
890        "aspected_planet": "Midheaven",
891        "aspecting_planet_id": 13,
892        "aspected_planet_id": 14,
893        "type": "Square",
894        "orb": 5.41,
895        "diff": 84.59
896      }
897    ]
898  }
899}

Request Headers

Authorization

string

required

Basic Authorization via header

Accept-Language

string

Preferred language for the response content

Properties

English - en

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.