Find Ritu And Ayana API

Get Ritu and Ayana details with Divine API's Daily Panchang API. Provide accurate seasonal and solar transition data based on Vedic astrology for enhanced cultural and spiritual insight.

Uncover the rhythmic dance of seasons and Earth's celestial journey with our 'Ritu and Ayana' API, providing a deeper understanding of nature's cycles as envisioned in Indian Astrology.

Supported Language Codes:

Support Article URL - https://support.divineapi.com/general-api-support/translating-an-indian-vedic-apis-into-a-different-language

en For English

hi For Hindi

bn For Bengali

ma For Marathi

tm For Tamil

tl For Telugu

ml For Malayalam

kn For Kannada

Guide: These languages are supported by this API. You can use by passing "lan" in body with a value of the language.

POST  https://astroapi-2.divineapi.com/indian-api/v1/find-ritu-and-anaya

Returns ritu and anaya details 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

day of panchang, eg: 24

month*

Integer

month of panchang, eg: 05

year*

Integer

year of panchang, eg: 2023

place

String

place, ex: New Delhi

lat*

Float

latitude, eg: 28.6139

lon*

Float

longitude, eg: 77.2090

tzone*

Float

timezone, eg: 5.5 Timezone List

lan

String

Language code as per the table above, default is 'en'.

{
    "success": 1,
    "data": {
        "ritus": {
            "drik": [
                {
                    "name": "grishma",
                    "ayana": "Dakshinayana",
                    "zodiac": "taurus"
                }
            ],
            "vedic": [
                {
                    "name": "grishma",
                    "ayana": "uttarayana",
                    "zodiac": "taurus"
                }
            ]
        },
        "dinmana": {
            "hours": "13",
            "minutes": "43",
            "seconds": "34"
        },
        "raatrimana": {
            "hours": "10",
            "minutes": "16",
            "seconds": "02"
        },
        "madhyahna": "12:18 PM"
    }
}

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

curl --location 'https://astroapi-2.divineapi.com/indian-api/v1/find-ritu-and-anaya' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'day="24"' \
--form 'month="05"' \
--form 'year="2023"' \
--form 'Place="New Delhi"' \
--form 'lat="28.6139"' \
--form 'lon="77.2090"' \
--form 'tzone="5.5"' \
--form 'lan="en"'

Last updated