Find Chandramasa

Embark on a lunar-centric journey with our 'Chandramasa' API, revealing the significance and influences of lunar months within the tapestry of Indian Astrology.

POST https://astroapi-3.divineapi.com/indian-api/v1/chandramasa

Returns Chandramasa in response

Headers

NameTypeDescription

Authorization*

String

your API Access Token

eg: Bearer {token}

Request Body

NameTypeDescription

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

place

String

place, ex: New Delhi

lat*

Float

latitude, eg: 28.6139

lon*

Float

longitude, eg: 77.2090

tzone*

Float

timezone, eg: 5.5

lan

String

Language en/hi, default en

month_type

String

month_type, purnimanta/amanta/both, default amanta

{
    "success": 1,
    "data": {
        "date": "2023-05-24",
        "chandramasa": "Jyeshtha",
        "adhik": "false",
        "type": "Amanta"
    }
}

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

curl --location 'https://astroapi-3.divineapi.com/indian-api/v1/chandramasa' \
--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