Loshu Grid API

The Loshu Grid API analyzes the placement and frequency of numbers in an individual's numerology chart. It provides insights into personality traits, strengths, weaknesses, and life patterns based on the ancient Loshu Grid method. This API is perfect for astrology and numerology platforms to deliver personalized number-based insights, including visual representations of the grid.

POST https://astroapi-7.divineapi.com/numerology/v1/loshu-grid

Returns Loshu Grid in response

Headers

Name
Type
Description

Authorization*

String

your API Access Token

eg: Bearer {token}

Request Body

Name
Type
Description

api_key*

String

your API key

day*

Integer

date of birth, eg: 24

month*

Integer

month of birth, eg: 05

year*

Integer

year of birth, eg: 2023

fname*

String

first name, ex: Rahul

lname

String

last name, ex: kumar

lan

String

Language en/hi, default en

{
    "status": "success",
    "code": 200,
    "message": "Request was successful",
    "data": {
        "grid": [
            {
                "grid": 1,
                "number": 4,
                "times": 1
            },
            {
                "grid": 2,
                "number": 9,
                "times": 1
            },
            {
                "grid": 3,
                "number": 2,
                "times": 3
            },
            {
                "grid": 4,
                "number": 3,
                "times": 1
            },
            {
                "grid": 5,
                "number": 5,
                "times": 1
            },
            {
                "grid": 6,
                "number": 7,
                "times": 0
            },
            {
                "grid": 7,
                "number": 8,
                "times": 1
            },
            {
                "grid": 8,
                "number": 1,
                "times": 0
            },
            {
                "grid": 9,
                "number": 6,
                "times": 1
            }
        ],
         "svg": "SVG CODE",  
        "base64_image": "base64_svg_image",     
    }
}

Take a look at how you might call this method via cURL, NodeJS or JavaScript jQuery AJAX and Python :

curl --location 'https://astroapi-7.divineapi.com/numerology/v1/loshu-grid' \
--header 'Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'day="24"' \
--form 'month="05"' \
--form 'year="2023"' \
--form 'fname="Rahul"' \
--form 'lname="Kumar"' \
--form 'lan="en"'

Last updated