Find Gowri Panchangam API
Empower your astrological explorations by accessing precise Gowri Panchangam data through the Find Gowri Panchangam API. This API provides the auspicious (Nalla Neram) and inauspicious time segments for both day and night as per Indian Astrology.
Supported Language Codes
Support Article URL: Translating Indian Vedic APIs into a Different Language
| Code | Language |
|---|---|
| en | English |
| hi | Hindi |
| bn | Bengali |
| ma | Marathi |
| tm | Tamil |
| tl | Telugu |
| ml | Malayalam |
| kn | Kannada |
Guide:
These language codes are supported by this API. You can specify your preferred language by passing the parameter lan in the request body. Default language is en (English).
API Endpoint
POST https://astroapi-3.divineapi.com/indian-api/v1/find-gowri-panchangam
This endpoint returns the Gowri Panchangam time segments - the auspicious and inauspicious periods for day and night, including Nalla Neram - for the provided date and location.
Headers
| Name | Type | Description |
|---|---|---|
| Authorization | String | Your API Access Token. Format: Bearer {token} |
Request Body
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | String | Yes | Your API key. |
| day | Integer | Yes | Day of Panchang (e.g., 24). |
| month | Integer | Yes | Month of Panchang (e.g., 05). |
| year | Integer | Yes | Year of Panchang (e.g., 2023). |
| place | String | No | Location name (e.g., New Delhi). |
| lat | Float | Yes | Latitude (e.g., 28.6139). |
| lon | Float | Yes | Longitude (e.g., 77.2090). |
| tzone | Float | Yes | Timezone (e.g., 5.5). See Timezone Guide. |
| lan | String | No | Language code as per the supported list above. Default is en. |
200: OK Fetched Gowri Panchangam Details Successfully
{
"success": 1,
"data": {
"day_segments": [
{
"name": "Amirtha",
"description": "Best",
"type": "auspicious",
"start": "05:24 AM",
"end": "07:08 AM"
},
{
"name": "Visham",
"description": "Bad",
"type": "inauspicious",
"start": "07:08 AM",
"end": "08:52 AM"
},
{
"name": "Rogam",
"description": "Evil",
"type": "inauspicious",
"start": "08:52 AM",
"end": "10:36 AM"
},
{
"name": "Laabam",
"description": "Gain",
"type": "auspicious",
"start": "10:36 AM",
"end": "12:20 PM"
},
{
"name": "Dhanam",
"description": "Wealth",
"type": "auspicious",
"start": "12:20 PM",
"end": "02:04 PM"
},
{
"name": "Sugam",
"description": "Good",
"type": "auspicious",
"start": "02:04 PM",
"end": "03:48 PM"
},
{
"name": "Soram",
"description": "Bad",
"type": "inauspicious",
"start": "03:48 PM",
"end": "05:32 PM"
},
{
"name": "Uthi",
"description": "Good",
"type": "auspicious",
"start": "05:32 PM",
"end": "07:16 PM"
}
],
"night_segments": [
{
"name": "Sugam",
"description": "Good",
"type": "auspicious",
"start": "07:14 PM",
"end": "08:30 PM"
},
{
"name": "Soram",
"description": "Bad",
"type": "inauspicious",
"start": "08:30 PM",
"end": "09:46 PM"
},
{
"name": "Uthi",
"description": "Good",
"type": "auspicious",
"start": "09:46 PM",
"end": "11:02 PM"
},
{
"name": "Amirtha",
"description": "Best",
"type": "auspicious",
"start": "11:02 PM",
"end": "12:18 AM Jun 02"
},
{
"name": "Visham",
"description": "Bad",
"type": "inauspicious",
"start": "12:18 AM",
"end": "01:34 AM Jun 02"
},
{
"name": "Rogam",
"description": "Evil",
"type": "inauspicious",
"start": "01:34 AM",
"end": "02:50 AM Jun 02"
},
{
"name": "Laabam",
"description": "Gain",
"type": "auspicious",
"start": "02:50 AM",
"end": "04:06 AM Jun 02"
},
{
"name": "Dhanam",
"description": "Wealth",
"type": "auspicious",
"start": "04:06 AM",
"end": "05:22 AM Jun 02"
}
],
"nalla_neram": [
{
"name": "Amirtha",
"description": "Best",
"period": "day",
"start": "05:24 AM",
"end": "07:08 AM"
},
{
"name": "Laabam",
"description": "Gain",
"period": "day",
"start": "10:36 AM",
"end": "12:20 PM"
},
{
"name": "Dhanam",
"description": "Wealth",
"period": "day",
"start": "12:20 PM",
"end": "02:04 PM"
},
{
"name": "Sugam",
"description": "Good",
"period": "day",
"start": "02:04 PM",
"end": "03:48 PM"
},
{
"name": "Uthi",
"description": "Good",
"period": "day",
"start": "05:32 PM",
"end": "07:16 PM"
},
{
"name": "Sugam",
"description": "Good",
"period": "night",
"start": "07:14 PM",
"end": "08:30 PM"
},
{
"name": "Uthi",
"description": "Good",
"period": "night",
"start": "09:46 PM",
"end": "11:02 PM"
},
{
"name": "Amirtha",
"description": "Best",
"period": "night",
"start": "11:02 PM",
"end": "12:18 AM Jun 02"
},
{
"name": "Laabam",
"description": "Gain",
"period": "night",
"start": "02:50 AM",
"end": "04:06 AM Jun 02"
},
{
"name": "Dhanam",
"description": "Wealth",
"period": "night",
"start": "04:06 AM",
"end": "05:22 AM Jun 02"
}
]
}
}Example Code Implementations
Below are example implementations in various programming environments.
cURL
curl --location 'https://astroapi-3.divineapi.com/indian-api/v1/find-gowri-panchangam' \
--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"'NodeJS
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-3.divineapi.com/indian-api/v1/find-gowri-panchangam',
'headers': {
'Authorization': 'Bearer {Your Auth Token}'
},
formData: {
'api_key': '{Your API Key}',
'day': '24',
'month': '05',
'year': '2023',
'place': 'New Delhi',
'lat': '28.6139',
'lon': '77.2090',
'tzone': '5.5',
'lan': 'en'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});JavaScript (jQuery AJAX)
var form = new FormData();
form.append("api_key", "{Your API Key}");
form.append("day", "24");
form.append("month", "05");
form.append("year", "2023");
form.append("place", "New Delhi");
form.append("lat", "28.6139");
form.append("lon", "77.2090");
form.append("tzone", "5.5");
form.append("lan", "en");
var settings = {
"url": "https://astroapi-3.divineapi.com/indian-api/v1/find-gowri-panchangam",
"method": "POST",
"timeout": 0,
"headers": {
"Authorization": "Bearer {Your Auth Token}"
},
"processData": false,
"mimeType": "multipart/form-data",
"contentType": false,
"data": form
};
$.ajax(settings).done(function (response) {
console.log(response);
});Python
import requests
url = "https://astroapi-3.divineapi.com/indian-api/v1/find-gowri-panchangam"
payload = {'api_key': '{Your API Key}',
'day': '24',
'month': '05',
'year': '2023',
'Place': 'New Delhi',
'lat': '28.6139',
'lon': '77.2090',
'tzone': '5.5',
'lan': 'en'}
headers = {
'Authorization': 'Bearer {Your Auth Token}'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)