AstrologyAPI

Personal Day Prediction

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

This API predicts your personal day number and provides a daily report based on it. The report includes advice on self-compassion, forgiveness, and being prepared for unexpected events. It also emphasizes the importance of maintaining a balance in legal and computer matters.

POST/personal_day_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_day_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_day_number": 11,
3  "considered_date": 11,
4  "report": [
5    "The way to universal love is self love! Be compassionate toward yourself and others. It's a single key, perpetually unlocking innumerable hearts. Forgiveness comes naturally to those who practice compassion. It's an artist's best color, the best music, the best poem! Forgiving others will enable you to deal with your situations and problems more gracefully. Expect the unexpected, but simultaneously also be aware of deceptions. Sudden events out of the blue with a tinge of some unexpected news may surprise you! Good or bad, always make a sincere attempt at taking things in your stride. A tight rope walker knows no better way! Legal matters and computer foul ups might pull you down further, but again, only psychic balance shall help you sail through. Happiness does not need a concrete door! It's a fluid taking the shape of the vessel. Hence, be the vessel wherein, it would want to flow in naturally. Insights would make their way to you this day. They are the language of heart. They depict good amount of awareness and perception. Thus, listen to them, they might be singing the tune you like!"
6  ]
7}

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.