Find Nakshatra

Access Nakshatra details with Divine API's Daily Panchang API. Provide users with accurate birth star (nakshatra) information and characteristics based on date, time, and location.

Note: API Key and API Access Token is mandatory. You can get this in to your Divine account > Profile Details page.

Journey through the cosmic tapestry using our 'Nakshatras' API, unraveling profound insights into lunar constellations that shape the essence of 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-1.divineapi.com/indian-api/v2/find-nakshatra

Returns nakshatra 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": {
        "sunrise": "2025-07-23 05:58:11",
        "sunset": "2025-07-23 20:46:48",
        "nakshatras": {
            "nakshatra_list": [
                "Aradra",
                "Punarvasu"
            ],
            "nakshatra_pada": [
                {
                    "nak_name": "Aradra",
                    "lord": "Rahu",
                    "deity": "Rudra",
                    "element": "Jala",
                    "symbol": "Tear Drop",
                    "syllables": "कु, घ, ङ, छ",
                    "pursuit": "Kama",
                    "gana": "Manushya",
                    "direction": "West",
                    "guna": "Tamasik",
                    "body_part": "Hair , Eyes , Back & front side of head",
                    "color": "Red",
                    "nak_number": 6,
                    "nak_pada": 4,
                    "end_time": "2025-07-23 08:24:11",
                    "end_time_seprated": {
                        "day": "23",
                        "month": "07",
                        "year": "2025",
                        "hour": "08",
                        "minute": "24",
                        "second": "11"
                    }
                },
                {
                    "nak_name": "Punarvasu",
                    "lord": "Jupiter",
                    "deity": "Aditi",
                    "element": "Jala",
                    "symbol": "Bow and Quiver",
                    "syllables": "के, को, हा, ही",
                    "pursuit": "Artha",
                    "gana": "Dev",
                    "direction": "North",
                    "guna": "Sattavik",
                    "body_part": "Finger & Nose",
                    "color": "Green/Silver",
                    "nak_number": 7,
                    "nak_pada": 1,
                    "end_time": "2025-07-23 14:04:11",
                    "end_time_seprated": {
                        "day": "23",
                        "month": "07",
                        "year": "2025",
                        "hour": "14",
                        "minute": "04",
                        "second": "11"
                    }
                },
                {
                    "nak_name": "Punarvasu",
                    "lord": "Jupiter",
                    "deity": "Aditi",
                    "element": "Jala",
                    "symbol": "Bow and Quiver",
                    "syllables": "के, को, हा, ही",
                    "pursuit": "Artha",
                    "gana": "Dev",
                    "direction": "North",
                    "guna": "Sattavik",
                    "body_part": "Finger & Nose",
                    "color": "Green/Silver",
                    "nak_number": 7,
                    "nak_pada": 2,
                    "end_time": "2025-07-23 19:46:11",
                    "end_time_seprated": {
                        "day": "23",
                        "month": "07",
                        "year": "2025",
                        "hour": "19",
                        "minute": "46",
                        "second": "11"
                    }
                },
                {
                    "nak_name": "Punarvasu",
                    "lord": "Jupiter",
                    "deity": "Aditi",
                    "element": "Jala",
                    "symbol": "Bow and Quiver",
                    "syllables": "के, को, हा, ही",
                    "pursuit": "Artha",
                    "gana": "Dev",
                    "direction": "North",
                    "guna": "Sattavik",
                    "body_part": "Finger & Nose",
                    "color": "Green/Silver",
                    "nak_number": 7,
                    "nak_pada": 3,
                    "end_time": "2025-07-24 01:29:11",
                    "end_time_seprated": {
                        "day": "24",
                        "month": "07",
                        "year": "2025",
                        "hour": "01",
                        "minute": "29",
                        "second": "11"
                    }
                },
                {
                    "nak_name": "Punarvasu",
                    "lord": "Jupiter",
                    "deity": "Aditi",
                    "element": "Jala",
                    "symbol": "Bow and Quiver",
                    "syllables": "के, को, हा, ही",
                    "pursuit": "Artha",
                    "gana": "Dev",
                    "direction": "North",
                    "guna": "Sattavik",
                    "body_part": "Finger & Nose",
                    "color": "Green/Silver",
                    "nak_number": 7,
                    "nak_pada": 4,
                    "end_time": ""
                }
            ]
        }
    }
}

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

curl --location 'https://astroapi-1.divineapi.com/indian-api/v2/find-nakshatra' \
--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