Planets Combustion Transit

The Planets Combustion Transit API provides the combustion dates of planets when they come close to the Sun.

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.

Planet names:-

mercury

venus

mars

jupiter

saturn

uranus

neptune

pluto

POST  https://astroapi-3.divineapi.com/indian-api/v1/planet-combustion-transit/:planet

Returns Nakshatra Transit 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

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 Timezone List

lan

String

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

{
    "success": 1,
    "data": {
        "message": "Mars have 1 transit in November 2025.",
        "transit": [
            {
                "date": "2025-11-06 23:52:00",
                "combustion": "Start"
            }
        ]
    }
}

{
    "success": 1,
    "data": {
        "message": "Mars have 1 transit in March 2026.",
        "transit": [
            {
                "date": "2026-03-26 14:08:00",
                "combustion": "End"
            }
        ]
    }
}

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/planet-combustion-transit/:planet' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--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