AstrologyAPI

Personal Year Prediction

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

This API provides a personalized prediction for a specific year. The response includes the personal year number, the considered year, and a report that contains detailed information about what to expect during the year. The report covers topics such as relationships, health, career, legal matters, and spiritual development. The report also includes advice on how to navigate the challenges and opportunities that may arise during the year.

POST/personal_year_prediction
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/personal_year_prediction"
9
10# Request data
11data = {
12        "date": 10,
13        "month": 5,
14        "year": 1990,
15        "full_name": "John"
16    }
17
18headers = {
19    'x-astrologyapi-key': api_key,
20    'Content-Type': 'application/json'
21    # Add 'Accept-Language': '<language_code>' if needed
22}
23
24try:
25    response = requests.post(api_url, headers=headers, json=data)
26    response.raise_for_status()  # Raise an exception for bad status codes (4xx or 5xx)
27
28    # Process the response
29    response_data = response.json()
30    print(json.dumps(response_data, indent=4))
31
32except requests.exceptions.RequestException as e:
33    print(f"Error making API request: {e}")
34    if hasattr(e, 'response') and e.response is not None:
35        try:
36            print(f"Error response: {e.response.json()}")
37        except json.JSONDecodeError:
38             print(f"Error response (non-JSON): {e.response.text}")
39
40
200Response
Copy
1{
2  "personal_year_number": 11,
3  "considered_year": 2019,
4  "report": [
5    "The 11 year is ruled by Uranus, ruler of Aquarius. You can expect sudden bursts of energy, sudden events and circumstances and intuitive flashes to occur at any time and without warning. Revelations, Spiritual Awakenings, a deeper sense of mission or purpose, inspiration, ideas, hunches, compassion, forgiveness, spiritual love, spiritual relationships, attending religious and metaphysical events are all part of the 11/2 year which in itself is very rare. Relationships this year can begin in April, June, September and November. Health disorders include focusing of the eyes, blood pressure, heart, lungs or stomach problems. February, April, July and November are months to watch this year for health.",
6    "As far as career matters, fame and fortune can find you, working as a team and the months of March, April, June, August and December are the best for advancement.",
7    "The 11 Year is a time of sudden events and legalities, or make some very important decisions that are immediate in nature. Legal matters will test your sense of balance, court decisions or legal advice will be sought. There can be legacies, dealings with wills, claims for accidents and agreements made for contracts and sales. Because the 11 is so spiritual, there can be some wonderful insights that come for artistic pursuits. People may begin to take notice of who you are and reward you for your good work or recognition can come for previous work that is long forgotten and never expected anyone to take notice of. Expect activities of this time period to be very quick in nature, very exciting and entirely unexpected.",
8    "Partnerships whether love or business is favorable IF you use your good senses and perception, because dishonesty is around you and you may be taken in by it. With the 11/2, this year becomes much more powerful. Initiative and leadership aptitude manifest through the 11.",
9    "One danger of the 11 energy is using your own special talents and power for your own gains. You may attain what you want, but feel very unhappy and dissatisfied in the end. Accomplishments may be many although you never feel you have unlocked your true potential. Nervous tension accompanies a spiritual intuitive ability that may be very confusing if you don't understand how to use it correctly. Your expectations will be very IMPRACTICAL as you try to blend the fantasy world with the real one. You will have some great dreams of what you can do, but difficulty putting them into realistic accomplishments. LEARN to trust and develop your intuition! This is a very opportune time to continue or begin your psychic, occult or metaphysical studies."
10  ]
11}

Request Headers

Authorization

string

required

Basic Authorization via header

Accept-Language

string

Preferred language for the response content

Properties

English - en

Request Parameters

date

int

required

Date of birth, eg: 10

month

int

required

Month of birth, eg: 5

year

int

required

Year of birth, eg: 1990

full_name

string

required

Name of the person, eg: John

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.