Find Karana

Explore the rhythmic cycles of life through our 'Karana' API, offering profound insights into the influence of lunar phases on daily affairs within the paradigm of Indian Astrology.

POST https://astroapi-1.divineapi.com/indian-api/v1/find-karana

Returns karana details in response.

Headers

NameTypeDescription

Authorization*

String

your API Access Token

eg: Bearer {token}

Request Body

NameTypeDescription

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

lan

String

Language en/hi, default en

{
    "success": 1,
    "data": {
        "sunrise": "2023-05-24 05:25:56",
        "sunset": "2023-05-24 19:10:28",
        "karnas": [
            {
                "start_time": "2023-05-24 00:58:44",
                "end_time": "2023-05-24 13:56:44",
                "tithi": "Panchmi",
                "paksha": "Shukla",
                "karana_name": "Bav",
                "mobility": "Moveable",
                "rulling_planet": "Sun",
                "devata": "Indra",
                "nature": "Saumya",
                "bhadra": [],
                "bhadra_niwas": []
            },
            {
                "start_time": "2023-05-24 13:57:44",
                "end_time": "2023-05-25 03:00:44",
                "tithi": "Panchmi",
                "paksha": "Shukla",
                "karana_name": "Balav",
                "mobility": "Moveable",
                "rulling_planet": "Moon",
                "devata": "Brahma",
                "nature": "Saumya",
                "bhadra": [],
                "bhadra_niwas": []
            },
            {
                "start_time": "2023-05-25 03:01:44",
                "end_time": "2023-05-25 16:08:44",
                "tithi": "Shasthi",
                "paksha": "Shukla",
                "karana_name": "Kaulava",
                "mobility": "Moveable",
                "rulling_planet": "Mars",
                "devata": "Mitra",
                "nature": "Saumya",
                "bhadra": [],
                "bhadra_niwas": []
            }
        ]
    }
}

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/v1/find-karana' \
--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