AstrologyAPI

Numerology Report

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

Provides a detailed report about a user's Radical number and the influence of Saturn on their life, including insights into their work style, strengths, weaknesses, and tendencies for sacrifice and dedication.

POST/numero_report
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/numero_report"
9
10# Request data
11data = {
12        "day": 10,
13        "month": 5,
14        "year": 1990,
15        "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  "title": "What the Number Says About You",
3  "description": "Your Radical number is 8. The ruler of Radical number 8 is Saturn. Due to Saturns influence you will rise slowly in life. To attain success after crossing obstacles and hardships is in your nature. You will not be deterred by failures though on occasions you may sink in despair. Your staunchest enemy is lethargy and this will be the reason for your decline. Therefore, dont procrastinate. Due to Saturns influence you will do many important jobs, which will render you name, acclaim and eminence. Not many people will understand your style of work. This will create many critics. You will have less tendency for show-off. This may lead people to regard you as a rough and tough person, while deep inside your heart you are quite sentimental and kind hearted. Mostly you will concern yourself with your work. Your tendency will be to confine yourself to your business. This attitude will generate many adverse people.You will have spirit of sacrifice. You will never waver from desired exertion, dedication and sacrifice desired for an endeavour. Therefore, you will certainly attain your goal after crossing hurdles. The people under the influence of Saturn are hardworking and struggling. As they have to cross many obstacles, they attain success somewhat late but their achievements are stable and permanent."
4}

Request Headers

Authorization

string

required

Basic Authorization via header

Accept-Language

string

Preferred language for the response content

Properties

English - enHindi - hiMarathi - maBengali - bnTamil - taTelugu - teMalayalam - mlKannada - kn

Request Parameters

day

int

required

Date of birth, eg: 10

month

int

required

Month of birth, eg: 5

year

int

required

Year of birth, eg: 1990

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.