API
Our API is designed to be integrated seamlessly by existing matrimony websites, dating websites and astrology service providers; as well as to develop new professional astrology website and/or mobile apps.
The available API endpoints are built around the REST architecture. All the API endpoints will return a JSON response with the standard HTTP response codes and need a Bearer Authentication via an API Key.
Authentication
All the API endpoints require an API key sent by the Bearer Authentication method.
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1{endpoint}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1{endpoint}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
IP Geolocation Lookup
IP geolocation lookup is the identification of an IP address geographic location in the real world.
GET /geoip.html?ip={ip}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/geoip.html?ip={ip}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/geoip.html?ip={ip}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
ip | Required | IP Address |
[ { "status": "success", "message": "IP Geolocation Lookup", "data": { "country_code": "US", "country_name": "United States", "region_name": "Illinois", "region_code": "IL", "city": "Chicago", "postal_code": "60602", "latitude": 41.8874, "longitude": -87.631799999999998, "timezone": "America\/Chicago" } } ]
Location by City
Generate a list of locations to be used by calculations that require a location id.
GET /location.html?city={city}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/location.html?city={city}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/location.html?city={city}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
city | Required | City Name |
[ { "status": "success", "message": "Location by City", "data": { "city": "chicago", "location": [ { "locid": "19729", "location": "Chicago, Illinois, United States" }, { "locid": "21029", "location": "North Chicago, Illinois, United States" }, { "locid": "21109", "location": "Chicago Heights, Illinois, United States" }, { "locid": "21137", "location": "East Chicago, Indiana, United States" }, { "locid": "21274", "location": "West Chicago, Illinois, United States" }, { "locid": "22475", "location": "Chicago Ridge, Illinois, United States" }, { "locid": "26338", "location": "South Chicago Heights, Illinois, United States" }, { "locid": "29548", "location": "New Chicago, Indiana, United States" } ] } } ]
Biorythm Cycles: Trends and Interpretation
Numerology is any belief in divine, mystical relationship between a number and one or more coinciding events. It is often associated with the paranormal, alongside astrology and similar divinatory arts. There is no supporting evidence for the modern practice of numerology in modern science, despite the long history of numerological ideas. The term numerologist can be used for those who place faith in numerical patterns and draw pseudo-scientific inferences from them, even if those people do not practice traditional numerology.
People have studied the relationships of numbers to dates and names for over 2500 years. They explore these associations to:
- Determine their Life Path and Destiny.
- Learn what challenges they may have to overcome.
- Identify peak moments in their lives.
- Explore their special talents and skills and how to use them wisely.
- Discover what they have the innate abilities to be.
GET /biorythm.html?dob={dob}&biodate={biodate}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/biorythm.html?dob={dob}&biodate={biodate}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/biorythm.html?dob={dob}&biodate={biodate}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
dob | Required | Date of birth |
biodate | Required | Biorythm date |
[ { "status": "success", "message": "Biorythm Cycles", "data": { "dob": "1993-07-13T18:40:05", "bio_date": "2022-08-03", "bio_average": { "status": "80%", "trend": "up", "meaning": "..." }, "bio_physical": { "status": "45%", "trend": "up", "meaning": "..." }, "bio_emotional": { "status": "95%", "trend": "down", "meaning": "..." }, "bio_intellectual": { "status": "100%", "trend": "down", "meaning": "..." }, "bio_love": { "status": "47%", "trend": "up", "meaning": "..." }, "bio_creative": { "status": "16%", "trend": "up", "meaning": "..." }, "bio_spiritual": { "status": "47%", "trend": "up", "meaning": "..." }, "bio_awareness": { "status": "14%", "trend": "down", "meaning": "..." } } } ]
Numerology Analysis
Numerology is any belief in divine, mystical relationship between a number and one or more coinciding events. It is often associated with the paranormal, alongside astrology and similar divinatory arts. There is no supporting evidence for the modern practice of numerology in modern science, despite the long history of numerological ideas. The term numerologist can be used for those who place faith in numerical patterns and draw pseudo-scientific inferences from them, even if those people do not practice traditional numerology.
People have studied the relationships of numbers to dates and names for over 2500 years. They explore these associations to:
- Determine their Life Path and Destiny.
- Learn what challenges they may have to overcome.
- Identify peak moments in their lives.
- Explore their special talents and skills and how to use them wisely.
- Discover what they have the innate abilities to be.
GET /numerology.html?fname={fname}&mname={mname}&lname={lname}&dob={dob}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/numerology.html?fname={fname}&mname={mname}&lname={lname}&dob={dob}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/numerology.html?fname={fname}&mname={mname}&lname={lname}&dob={dob}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
fname | Required | FirstName |
mname | Optional | MiddleName |
lname | Required | LastName |
dob | Required | Date of Birth |
[ { "status": "success", "message": "Numerology", "data": { "fname": "Jane", "mname": "Mary", "lname": "Doe", "dob": "2022-12-03", "life_path": { "number": 3, "definition": "...", "meaning": "..." }, "life_destiny": { "number": 3, "definition": "...", "meaning": "..." }, "soul": { "number": 7, "definition": "...", "meaning": "..." }, "personality": { "number": 5, "definition": "...", "meaning": "..." }, "maturity": { "number": 6, "definition": "...", "meaning": "..." }, "pinnacles": { "definition": "..." }, "pinnacle_1": { "number": 6, "meaning": "..." }, "pinnacle_2": { "number": 9, "meaning": "..." }, "pinnacle_3": { "number": 6, "meaning": "..." }, "pinnacle_4": { "number": 9, "meaning": "..." }, "challenges": { "definition": "..." }, "challenge_1": { "number": 0, "meaning": "..." }, "challenge_2": { "number": 3, "meaning": "..." }, "challenge_3": { "number": 6, "meaning": "..." }, "challenge_4": { "number": 3, "meaning": "..." }, "cycles": { "definition": "..." }, "cycle_1": { "number": 3, "meaning": "..." }, "cycle_2": { "number": 3, "meaning": "..." }, "cycle_3": { "number": 6, "meaning": "..." }, "person_day": { "number": 3, "definition": "...", "meaning": "..." }, "person_month": { "number": 8, "definition": "...", "meaning": "..." }, "person_year": { "number": 3, "definition": "...", "meaning": "..." } } } ]
Numerology: Life Path
The Life Path Number is similar to your Sun Sign in astrology: It reveals your identity, including strengths, weaknesses, talents, and ambitions. Your Life Path Number also exposes the tone of your experiences, and why events occur past, present, and future. Simply put, it creates an organized, structured system that illuminates your lived experiences.
GET /numerology-lifepath.html?dob={dob}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/numerology-lifepath.html?dob={dob}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/numerology-lifepath.html?dob={dob}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
dob | Required | Date of Birth |
[ { "status": "success", "message": "Numerology", "data": { "dob": "2022-12-03", "life_path": { "number": 3, "definition": "...", "meaning": { "general": "...", "description": "...", "positive_traits": "...", "negative_traits": "...", "tarot": "...", "astrology": "...", "rune": "...", "iching": "...", "treeoflife": "...", "hebrewletter": "...", "shamanism": "...", "element": "...", "alchemy": "...", "naura": "...", "color": "...", "gemstone": "...", "crystal": "...", "month": "...", "weekday": "...", "luckynumber": "...", "flower": "..." } } } } ]
Moon Phases by Cordinates
The phases of the Moon are the different ways the Moon looks from Earth over about a month. As the Moon orbits around the Earth, the half of the Moon that faces the Sun will be lit up. The different shapes of the lit portion of the Moon that can be seen from Earth are known as phases of the Moon. Each phase repeats itself every 29.5 days.
There are four major moon phases as moments in time during the lunar cycle of 29.53058770576 days.
- New Moon = 0 days
- First Quarter = 7.38264692644 days
- Full Moon = 14.76529385288 days
- Last Quarter = 22.14794077932 days
- New Moon = 29.53058770576 days = 0 days
There are four other moon phases as periods in between: waxing crescent, waxing gibous, waning gibous, and waning crescent.
GET /moon-phases.html?latitude={latitude}&longitude={longitude}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/moon-phases.html?latitude={latitude}&longitude={longitude}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/moon-phases.html?latitude={latitude}&longitude={longitude}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
latitude | Required | Latitude |
longitude | Required | Longitude |
[ { "status": "success", "message": "Moon Phase", "data": { "latitude": "41.8874", "longitude": "-87.631799999999998", "hemisphere": "Northern", "datetime": "Wednesday 10th August 2022 05:36:10 PM", "moon": { "phase": "Full Moon", "illumination": "97%", "age": "13.13 Days", "angle": 0.55000000000000004, "distance": "363,973.83 Km" }, "sun": { "angle": 0.53000000000000003, "distance": "151,623,249.93 Km" }, "moon_phases": [ { "name": "New Moon", "date": "Thu Jul 28", "time_of_day": "07:55 PM" }, { "name": "First Quarter", "date": "Fri Aug 5", "time_of_day": "01:07 PM" }, { "name": "Full Moon", "date": "Fri Aug 12", "time_of_day": "03:36 AM" }, { "name": "Last Quarter", "date": "Fri Aug 19", "time_of_day": "06:36 AM" }, { "name": "New Moon", "date": "Sat Aug 27", "time_of_day": "10:16 AM" }, { "name": "First Quarter", "date": "Sat Sep 3", "time_of_day": "08:08 PM" }, { "name": "Full Moon", "date": "Sat Sep 10", "time_of_day": "11:58 AM" }, { "name": "Last Quarter", "date": "Sat Sep 17", "time_of_day": "11:52 PM" } ] } } ]
Moon Phases by Location
The phases of the Moon are the different ways the Moon looks from Earth over about a month. As the Moon orbits around the Earth, the half of the Moon that faces the Sun will be lit up. The different shapes of the lit portion of the Moon that can be seen from Earth are known as phases of the Moon. Each phase repeats itself every 29.5 days.
There are four major moon phases as moments in time during the lunar cycle of 29.53058770576 days.
- New Moon = 0 days
- First Quarter = 7.38264692644 days
- Full Moon = 14.76529385288 days
- Last Quarter = 22.14794077932 days
- New Moon = 29.53058770576 days = 0 days
There are four other moon phases as periods in between: waxing crescent, waxing gibous, waning gibous, and waning crescent.
GET /moon-phases.html?locid={locid}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/moon-phases.html?locid={locid}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/moon-phases.html?locid={locid}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
locid | Required | Location Id |
[ { "status": "success", "message": "Moon Phase", "data": { "latitude": "41.8874", "longitude": "-87.631799999999998", "hemisphere": "Northern", "datetime": "Wednesday 10th August 2022 05:36:10 PM", "moon": { "phase": "Full Moon", "illumination": "97%", "age": "13.13 Days", "angle": 0.55000000000000004, "distance": "363,973.83 Km" }, "sun": { "angle": 0.53000000000000003, "distance": "151,623,249.93 Km" }, "moon_phases": [ { "name": "New Moon", "date": "Thu Jul 28", "time_of_day": "07:55 PM" }, { "name": "First Quarter", "date": "Fri Aug 5", "time_of_day": "01:07 PM" }, { "name": "Full Moon", "date": "Fri Aug 12", "time_of_day": "03:36 AM" }, { "name": "Last Quarter", "date": "Fri Aug 19", "time_of_day": "06:36 AM" }, { "name": "New Moon", "date": "Sat Aug 27", "time_of_day": "10:16 AM" }, { "name": "First Quarter", "date": "Sat Sep 3", "time_of_day": "08:08 PM" }, { "name": "Full Moon", "date": "Sat Sep 10", "time_of_day": "11:58 AM" }, { "name": "Last Quarter", "date": "Sat Sep 17", "time_of_day": "11:52 PM" } ] } } ]
Panchanga by Cordinates
In Vedic astrology, the basic tenet of astrology was integrated with celestial events and thus was born various branches of Vedic astrology and the Panchānga. In simple terms, Panchānga means the Day, Nakshatra (Star), tithi, Yoga and Karana every day. It is a mirror of the sky. The document used as Panchāngam has evolved over the last 5000 years. The theories propounded in the two scriptures, Surya Siddhanta and Grahalaghava formed the basis for the plethora of calendars or Panchāngas in the past in different regions of the country - a culturally complex system.
There are three popular meanings of panchāngam:
- In Vedic astrology, meaning "five attributes" of the day. They are:
- Tithi - Ending Moment (EM) of elongation of the Moon, the lunar day, the angular relationship between Sun and Moon ( Apparent Moon minus Apparent Sun). One Tithi equals 12 degree difference between Moon and Sun.
- Nakshatram - EM of astarism of the day, that is, the stellar mansion in which Moon is located for an observer at the center of the Earth. One Nakshatra equals 13 degrees:20 minutes. There are 27 Nakshatra in 360 degrees.
- Yoga - EM of the angular relationship between Sun and Moon( Apparent Moon plus Apparent Sun). One Yoga equals 13 degrees:20 minutes. There are 27 Yogas in 360 degrees.
- Karana - EM of half of a Tithi. One Karaṇa equals 6 degree difference between Moon and Sun.
- Var weekday the seven weekdays. Monier-Williams gives "solar day" instead of Rāśi as the fifth limb. Some people enumerate Vār (days of the week) instead. Vār or solar days do not involve intricate computations, unlike EM of Rāśi; however, in the Hindu system the five elements only constitute the five limbs of the Panchāngam.
- An almanac that contains the astronomical / astrological daily details also came to be called a panchāngam because of the importance of five attributes.
- Panchānga-pūjan, which is a part of Ganesh-Ambika-pūjan.
GET /panchanga.html?datetime={datetime}&latitude={latitude}&longitude={longitude}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/panchanga.html?datetime={datetime}&latitude={latitude}&longitude={longitude}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/panchanga.html?datetime={datetime}&latitude={latitude}&longitude={longitude}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
datetime | Required | Datetime |
latitude | Required | Latitude |
longitude | Required | Longitude |
[ { "status": "success", "message": "Panchanga", "data": { "latitude": "41.8874", "longitude": "-87.631799999999998", "timezone": "America\/Chicago", "datetime": "2022-12-03T13:40:12", "panchanga": { "thiti": "Shukla Ekadashi 18.28 % left", "nakshatra": "Revati", "yoga": "Vyateepat", "vara": "Shanivar", "lord": "Sa", "karana": "Vishti" } } } ]
Panchanga by Location
In Vedic astrology, the basic tenet of astrology was integrated with celestial events and thus was born various branches of Vedic astrology and the Panchānga. In simple terms, Panchānga means the Day, Nakshatra (Star), tithi, Yoga and Karana every day. It is a mirror of the sky. The document used as Panchāngam has evolved over the last 5000 years. The theories propounded in the two scriptures, Surya Siddhanta and Grahalaghava formed the basis for the plethora of calendars or Panchāngas in the past in different regions of the country - a culturally complex system.
There are three popular meanings of panchāngam:
- In Vedic astrology, meaning "five attributes" of the day. They are:
- Tithi - Ending Moment (EM) of elongation of the Moon, the lunar day, the angular relationship between Sun and Moon ( Apparent Moon minus Apparent Sun). One Tithi equals 12 degree difference between Moon and Sun.
- Nakshatram - EM of astarism of the day, that is, the stellar mansion in which Moon is located for an observer at the center of the Earth. One Nakshatra equals 13 degrees:20 minutes. There are 27 Nakshatra in 360 degrees.
- Yoga - EM of the angular relationship between Sun and Moon( Apparent Moon plus Apparent Sun). One Yoga equals 13 degrees:20 minutes. There are 27 Yogas in 360 degrees.
- Karana - EM of half of a Tithi. One Karaṇa equals 6 degree difference between Moon and Sun.
- Var weekday the seven weekdays. Monier-Williams gives "solar day" instead of Rāśi as the fifth limb. Some people enumerate Vār (days of the week) instead. Vār or solar days do not involve intricate computations, unlike EM of Rāśi; however, in the Hindu system the five elements only constitute the five limbs of the Panchāngam.
- An almanac that contains the astronomical / astrological daily details also came to be called a panchāngam because of the importance of five attributes.
- Panchānga-pūjan, which is a part of Ganesh-Ambika-pūjan.
GET /panchanga.html?datetime={datetime}&locid={locid}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/panchanga.html?datetime={datetime}&locid={locid}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/panchanga.html?datetime={datetime}&locid={locid}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
datetime | Required | Datetime |
locid | Required | Location Id |
[ { "status": "success", "message": "Panchanga", "data": { "latitude": "41.8874", "longitude": "-87.631799999999998", "timezone": "America\/Chicago", "datetime": "2022-12-03T13:40:12", "panchanga": { "thiti": "Shukla Ekadashi 18.28 % left", "nakshatra": "Revati", "yoga": "Vyateepat", "vara": "Shanivar", "lord": "Sa", "karana": "Vishti" } } } ]
Mangal Dosha by Cordinates
Mangala Dosha (IAST: Maṅgala-doṣa), also known as Mangal Dosh, Kuja Dosha, Bhom Dosha or Angarakha Dosha, because of schwa deletion, is a Hindu superstition prevalent in India and Nepal. A person born under the influence of Mars, Mangala, which is placed in Ascendant, 2nd house, 4th house, 7th house, 8th house or 12th house in the birth chart; and as per Hindu astrology is said to have mangala dosha, the mars defect; such a person is called a Mangalik or Manglik.
Mangal Dosha Characteristics
- People of both sexes can be Manglik.
- The planet of Mars represents respect, energy, ego and self-esteem. Manglik individuals have a volatile temper, and face a lot of problems in bending and adjusting with their partners.
- The energy of Manglik individuals is like fire, and when not used in doing something constructive, can become ruthless.
- Mangal Dosha affects married life, mental state, and can lead to financial loss.
- Manglik individuals born on Tuesday have their negative effects nullified.
- Marriage between two Manglik individuals cancels the negative effects.
There are certain conceptions associated with presence of Mars in different house with Mangal Dosha like:
- Mars present in Ascendant or in 1st house, indicates health problems, delayed marriage, stubborness and incoherency.
- Mars present in 2nd house, indicates worries, expenditure, internal disputes.
- Mars present in 4th house, indicates marriage harmed by Karmas, lack of domestic peace.
- Mars present in 7th house, indicates unhappy married life.
- Mars present in 8th house, indicates problematic married life, decrease in longevity and fife expectancy.
- Mars present in 12th house, indicates financial problems, impotency, prone to accident and lack in sexual pleasure.
Manglik Dosha Cancellation
The negative influence of Manglik Dosha is cancelled, when:
- Manglik boy marry a Manglik Girl.
- Mars is in 1st house in Aries.
- Mars is in 2nd house in Aries or Scorpio.
- Mars is in 4th house in Gemini or Virgo.
- Mars is in 7th house in Cancer or Capricorn.
- Mars is in 8th house in Sagittarius or Pisces.
- Mars is in 12th house in Taurus or Libra.
GET /mangal-dosha.html?dob={dob}&latitude={latitude}&longitude={longitude}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/mangal-dosha.html?dob={dob}&latitude={latitude}&longitude={longitude}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/mangal-dosha.html?dob={dob}&latitude={latitude}&longitude={longitude}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
dob | Required | Date of Birth |
latitude | Required | Latitude |
longitude | Required | Longitude |
[ { "status": "success", "message": "Mangal Dosha", "data": { "dob": "1997-04-23 03:27:12", "latitude": "41.8874", "longitude": "-87.631799999999998", "timezone": "America\/Chicago", "has_dosha": false, "description": "Your Mangal Dosha is Not Manglik", "has_exception": false } } ]
Mangal Dosha by Location
Mangala Dosha (IAST: Maṅgala-doṣa), also known as Mangal Dosh, Kuja Dosha, Bhom Dosha or Angarakha Dosha, because of schwa deletion, is a Hindu superstition prevalent in India and Nepal. A person born under the influence of Mars, Mangala, which is placed in Ascendant, 2nd house, 4th house, 7th house, 8th house or 12th house in the birth chart; and as per Hindu astrology is said to have mangala dosha, the mars defect; such a person is called a Mangalik or Manglik.
Mangal Dosha Characteristics
- People of both sexes can be Manglik.
- The planet of Mars represents respect, energy, ego and self-esteem. Manglik individuals have a volatile temper, and face a lot of problems in bending and adjusting with their partners.
- The energy of Manglik individuals is like fire, and when not used in doing something constructive, can become ruthless.
- Mangal Dosha affects married life, mental state, and can lead to financial loss.
- Manglik individuals born on Tuesday have their negative effects nullified.
- Marriage between two Manglik individuals cancels the negative effects.
There are certain conceptions associated with presence of Mars in different house with Mangal Dosha like:
- Mars present in Ascendant or in 1st house, indicates health problems, delayed marriage, stubborness and incoherency.
- Mars present in 2nd house, indicates worries, expenditure, internal disputes.
- Mars present in 4th house, indicates marriage harmed by Karmas, lack of domestic peace.
- Mars present in 7th house, indicates unhappy married life.
- Mars present in 8th house, indicates problematic married life, decrease in longevity and fife expectancy.
- Mars present in 12th house, indicates financial problems, impotency, prone to accident and lack in sexual pleasure.
Manglik Dosha Cancellation
The negative influence of Manglik Dosha is cancelled, when:
- Manglik boy marry a Manglik Girl.
- Mars is in 1st house in Aries.
- Mars is in 2nd house in Aries or Scorpio.
- Mars is in 4th house in Gemini or Virgo.
- Mars is in 7th house in Cancer or Capricorn.
- Mars is in 8th house in Sagittarius or Pisces.
- Mars is in 12th house in Taurus or Libra.
GET /mangal-dosha.html?dob={dob}&locid={locid}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/mangal-dosha.html?dob={dob}&locid={locid}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/mangal-dosha.html?dob={dob}&locid={locid}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
dob | Required | Date of Birth |
locid | Required | Location Id |
[ { "status": "success", "message": "Mangal Dosha", "data": { "dob": "1997-04-23 03:27:12", "latitude": "41.8874", "longitude": "-87.631799999999998", "timezone": "America\/Chicago", "has_dosha": false, "description": "Your Mangal Dosha is Not Manglik", "has_exception": false } } ]
Kundali Matching by Cordinates
Kundali Matching or Kundli Milan is the Vedic Astrology equivalent of horoscope matching, a common tradition in hindu marriages where the choice of marriage is governed by a healthy Gun Milan score. In hindu societies, especially in India, where arranged marriages are common, kundali matching is the most important factor that is taken into consideration while moving ahead with a marriage proposal. Matching kundalis of prospective bride and groom will let them know how stars influence their marriage and what remedial measures need to be taken to ensure eternal marital bliss.
According to Hindu Vedic Astrology, a Kundli or Kundali, has 8 Kutas or Koota or Koot, which have in total 36 Guns or Guna or Gana. Ashta Kuta Milan or Gun Milan is a horoscope matching system that is used by most astrologers to check whether a girl and a boy are a good match for marriage. It is observed that in Kundali Matching, the higher the compatibility of the 36 Guns or Gunas, the higher is the probability that the bride and groom will have a happy marriage.
GET /kundali-matching.html?bfname={bfname}&bmname={bmname}&blname={blname}&bdob={bdob}&blatitude={blatitude}&blongitude={blongitude}&gfname={gfname}&gmname={gmname}&glname={glname}&gdob={gdob}&glatitude={glatitude}&glongitude={glongitude}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/kundali-matching.html?bfname={bfname}&bmname={bmname}&blname={blname}&bdob={bdob}&blatitude={blatitude}&blongitude={blongitude}&gfname={gfname}&gmname={gmname}&glname={glname}&gdob={gdob}&glatitude={glatitude}&glongitude={glongitude}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/kundali-matching.html?bfname={bfname}&bmname={bmname}&blname={blname}&bdob={bdob}&blatitude={blatitude}&blongitude={blongitude}&gfname={gfname}&gmname={gmname}&glname={glname}&gdob={gdob}&glatitude={glatitude}&glongitude={glongitude}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
bfname | Required | Male FirstName |
bmname | Optional | Male MiddleName |
blname | Required | Male LastName |
bdob | Required | Male Date of Birth |
blatitude | Required | Male Latitude |
blongitude | Required | Male Longitude |
gfname | Required | Female FirstName |
gmname | Optional | Female MiddleName |
glname | Required | Female LastName |
gdob | Required | Female Date of Birth |
glatitude | Required | Female Latitude |
glongitude | Required | Female Longitude |
[ { "status": "success", "message": "Kundali Matching", "data": { "male_name": "James Bond Smith", "male_dob": "1997-04-23 03:27:12", "male_latitude": "41.85003300", "male_longitude": "-87.65005200", "male_timezone": "America\/Chicago", "female_name": "Jane Mary Doe", "female_dob": "2002-12-03 13:40:12", "female_latitude": "18.98780700", "female_longitude": "72.83644700", "female_timezone": "Asia\/Karachi", "kundali": { "varna_kuta": { "score": "0\/1", "male_varna": "Viasya", "female_varna": "Brahmin" }, "vasya_kuta": { "score": "0\/2" }, "tara_kuta": { "score": "3\/3", "male_nakshatra": "Swati", "female_nakshatra": "Anuradha" }, "yoni_kuta": { "score": "2\/4", "male_yoni": "Male Buffalo", "female_yoni": "Female Hare" }, "graha_maitri_kuta": { "score": "3\/5", "male_lord": "Venus", "female_lord": "Mars" }, "gana_kuta": { "score": "6\/6", "male_gana": "Deva", "female_gana": "Deva" }, "rashi_kuta": { "score": "0\/7", "male_rashi": "Libra", "female_rashi": "Scorpio" }, "nadi_kuta": { "score": "8\/8", "male_dosha": "Kapha", "female_dosha": "Pitta" }, "total_kuta": { "score": "22\/36", "male_manglik": "Not Manglik", "female_manglik": "Not Manglik" }, "matching": "Good", "auspicious_wedding_dates": { "groom": [ { "date_range": "November, 2022 to May, 2023" }, { "date_range": "June, 2024 to November, 2024" }, { "date_range": "August, 2026 to January, 2027" }, { "date_range": "February, 2027 to July, 2027" }, { "date_range": "November, 2027 to May, 2028" }, { "date_range": "June, 2029 to November, 2029" }, { "date_range": "June, 2030 to November, 2030" } ], "bride": [ { "date_range": "September, 2020 to March, 2021" }, { "date_range": "January, 2022 to June, 2022" }, { "date_range": "October, 2023 to March, 2024" }, { "date_range": "October, 2024 to March, 2025" }, { "date_range": "June, 2026 to November, 2026" }, { "date_range": "April, 2030 to September, 2030" } ] } } } } ]
Kundali Matching by Location
Kundali Matching or Kundli Milan is the Vedic Astrology equivalent of horoscope matching, a common tradition in hindu marriages where the choice of marriage is governed by a healthy Gun Milan score. In hindu societies, especially in India, where arranged marriages are common, kundali matching is the most important factor that is taken into consideration while moving ahead with a marriage proposal. Matching kundalis of prospective bride and groom will let them know how stars influence their marriage and what remedial measures need to be taken to ensure eternal marital bliss.
According to Hindu Vedic Astrology, a Kundli or Kundali, has 8 Kutas or Koota or Koot, which have in total 36 Guns or Guna or Gana. Ashta Kuta Milan or Gun Milan is a horoscope matching system that is used by most astrologers to check whether a girl and a boy are a good match for marriage. It is observed that in Kundali Matching, the higher the compatibility of the 36 Guns or Gunas, the higher is the probability that the bride and groom will have a happy marriage.
GET /kundali-matching.html?bfname={bfname}&bmname={bmname}&blname={blname}&bdob={bdob}&blocid={blocid}&gfname={gfname}&gmname={gmname}&glname={glname}&gdob={gdob}&glocid={glocid}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/kundali-matching.html?bfname={bfname}&bmname={bmname}&blname={blname}&bdob={bdob}&blocid={blocid}&gfname={gfname}&gmname={gmname}&glname={glname}&gdob={gdob}&glocid={glocid}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/kundali-matching.html?bfname={bfname}&bmname={bmname}&blname={blname}&bdob={bdob}&blocid={blocid}&gfname={gfname}&gmname={gmname}&glname={glname}&gdob={gdob}&glocid={glocid}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
bfname | Required | Male FirstName |
bmname | Optional | Male MiddleName |
blname | Required | Male LastName |
bdob | Required | Male Date of Birth |
blocid | Required | Male Location Id |
gfname | Required | Female FirstName |
gmname | Optional | Female MiddleName |
glname | Required | Female LastName |
gdob | Required | Female Date of Birth |
glocid | Required | Female Location Id |
[ { "status": "success", "message": "Kundali Matching", "data": { "male_name": "James Bond Smith", "male_dob": "1997-04-23 03:27:12", "male_latitude": "41.85003300", "male_longitude": "-87.65005200", "male_timezone": "America\/Chicago", "female_name": "Jane Mary Doe", "female_dob": "2002-12-03 13:40:12", "female_latitude": "18.98780700", "female_longitude": "72.83644700", "female_timezone": "Asia\/Karachi", "kundali": { "varna_kuta": { "score": "0\/1", "male_varna": "Viasya", "female_varna": "Brahmin" }, "vasya_kuta": { "score": "0\/2" }, "tara_kuta": { "score": "3\/3", "male_nakshatra": "Swati", "female_nakshatra": "Anuradha" }, "yoni_kuta": { "score": "2\/4", "male_yoni": "Male Buffalo", "female_yoni": "Female Hare" }, "graha_maitri_kuta": { "score": "3\/5", "male_lord": "Venus", "female_lord": "Mars" }, "gana_kuta": { "score": "6\/6", "male_gana": "Deva", "female_gana": "Deva" }, "rashi_kuta": { "score": "0\/7", "male_rashi": "Libra", "female_rashi": "Scorpio" }, "nadi_kuta": { "score": "8\/8", "male_dosha": "Kapha", "female_dosha": "Pitta" }, "total_kuta": { "score": "22\/36", "male_manglik": "Not Manglik", "female_manglik": "Not Manglik" }, "matching": "Good", "auspicious_wedding_dates": { "groom": [ { "date_range": "November, 2022 to May, 2023" }, { "date_range": "June, 2024 to November, 2024" }, { "date_range": "August, 2026 to January, 2027" }, { "date_range": "February, 2027 to July, 2027" }, { "date_range": "November, 2027 to May, 2028" }, { "date_range": "June, 2029 to November, 2029" }, { "date_range": "June, 2030 to November, 2030" } ], "bride": [ { "date_range": "September, 2020 to March, 2021" }, { "date_range": "January, 2022 to June, 2022" }, { "date_range": "October, 2023 to March, 2024" }, { "date_range": "October, 2024 to March, 2025" }, { "date_range": "June, 2026 to November, 2026" }, { "date_range": "April, 2030 to September, 2030" } ] } } } } ]
Nakshatra Porutham by Cordinates
Marriage is considered as the most platonic, pure and eternal bond of relationship between a man and women in Indian culture and tradition. In Tamil Nadu as in most part of the Indian society, the first step in marriage is the analysis of the horoscope or jathaka matches between the bride and groom, which will dictate whether or not a marriage is considered.
Horoscope matching also called Jathaka Porutham is a system devised by the ancient sages seering to analyze the marital compatibility of two people by examining their birth stars and moon signs, ascertaining Koota Agreement, a method of matching horoscopes where twenty kootas are usually recommended, although only ten or sometimes eight are considered for match-making.
GET /nakshatra-porutham.html?bfname={bfname}&bmname={bmname}&blname={blname}&bdob={bdob}&blatitude={blatitude}&blongitude={blongitude}&gfname={gfname}&gmname={gmname}&glname={glname}&gdob={gdob}&glatitude={glatitude}&glongitude={glongitude}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/nakshatra-porutham.html?bfname={bfname}&bmname={bmname}&blname={blname}&bdob={bdob}&blatitude={blatitude}&blongitude={blongitude}&gfname={gfname}&gmname={gmname}&glname={glname}&gdob={gdob}&glatitude={glatitude}&glongitude={glongitude}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/nakshatra-porutham.html?bfname={bfname}&bmname={bmname}&blname={blname}&bdob={bdob}&blatitude={blatitude}&blongitude={blongitude}&gfname={gfname}&gmname={gmname}&glname={glname}&gdob={gdob}&glatitude={glatitude}&glongitude={glongitude}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
bfname | Required | Male FirstName |
bmname | Optional | Male MiddleName |
blname | Required | Male LastName |
bdob | Required | Male Date of Birth |
blatitude | Required | Male Latitude |
blongitude | Required | Male Longitude |
gfname | Required | Female FirstName |
gmname | Optional | Female MiddleName |
glname | Required | Female LastName |
gdob | Required | Female Date of Birth |
glatitude | Required | Female Latitude |
glongitude | Required | Female Longitude |
[ { "status": "success", "message": "Nakshatra Porutham", "data": { "male_name": "James Bond Smith", "male_dob": "1997-04-23 03:27:12", "male_star": "Swati", "male_sign": "Libra", "male_latitude": "41.85003300", "male_longitude": "-87.65005200", "male_timezone": "America\/Chicago", "female_name": "Jane Mary Doe", "female_dob": "2002-12-03 13:40:12", "female_star": "Anuradha", "female_sign": "Scorpio", "female_latitude": "18.98780700", "female_longitude": "72.83644700", "female_timezone": "Asia\/Karachi", "nakshatra_porutham": { "dina": { "score": "1\/1" }, "gana": { "score": "1\/1" }, "mahendra": { "score": "0\/1" }, "streedeerga": { "score": "1\/1" }, "yoni": { "score": "1\/1" }, "rasi": { "score": "0\/1" }, "rasiyathipaty": { "score": "1\/1" }, "vasya": { "score": "1\/1" }, "rajju": { "score": "0\/1" }, "vedha": { "score": "1\/1" }, "total_porutham": { "score": "7\/10" }, "matching": "Excellent" } } } ]
Nakshatra Porutham by Location
Marriage is considered as the most platonic, pure and eternal bond of relationship between a man and women in Indian culture and tradition. In Tamil Nadu as in most part of the Indian society, the first step in marriage is the analysis of the horoscope or jathaka matches between the bride and groom, which will dictate whether or not a marriage is considered.
Horoscope matching also called Jathaka Porutham is a system devised by the ancient sages seering to analyze the marital compatibility of two people by examining their birth stars and moon signs, ascertaining Koota Agreement, a method of matching horoscopes where twenty kootas are usually recommended, although only ten or sometimes eight are considered for match-making.
GET /nakshatra-porutham.html?bfname={bfname}&bmname={bmname}&blname={blname}&bdob={bdob}&blocid={blocid}&gfname={gfname}&gmname={gmname}&glname={glname}&gdob={gdob}&glocid={glocid}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/nakshatra-porutham.html?bfname={bfname}&bmname={bmname}&blname={blname}&bdob={bdob}&blocid={blocid}&gfname={gfname}&gmname={gmname}&glname={glname}&gdob={gdob}&glocid={glocid}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/nakshatra-porutham.html?bfname={bfname}&bmname={bmname}&blname={blname}&bdob={bdob}&blocid={blocid}&gfname={gfname}&gmname={gmname}&glname={glname}&gdob={gdob}&glocid={glocid}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
bfname | Required | Male FirstName |
bmname | Optional | Male MiddleName |
blname | Required | Male LastName |
bdob | Required | Male Date of Birth |
blocid | Required | Male Location Id |
gfname | Required | Female FirstName |
gmname | Optional | Female MiddleName |
glname | Required | Female LastName |
gdob | Required | Female Date of Birth |
glocid | Required | Female Location Id |
[ { "status": "success", "message": "Nakshatra Porutham", "data": { "male_name": "James Bond Smith", "male_dob": "1997-04-23 03:27:12", "male_star": "Swati", "male_sign": "Libra", "male_latitude": "41.85003300", "male_longitude": "-87.65005200", "male_timezone": "America\/Chicago", "female_name": "Jane Mary Doe", "female_dob": "2002-12-03 13:40:12", "female_star": "Anuradha", "female_sign": "Scorpio", "female_latitude": "18.98780700", "female_longitude": "72.83644700", "female_timezone": "Asia\/Karachi", "nakshatra_porutham": { "dina": { "score": "1\/1" }, "gana": { "score": "1\/1" }, "mahendra": { "score": "0\/1" }, "streedeerga": { "score": "1\/1" }, "yoni": { "score": "1\/1" }, "rasi": { "score": "0\/1" }, "rasiyathipaty": { "score": "1\/1" }, "vasya": { "score": "1\/1" }, "rajju": { "score": "0\/1" }, "vedha": { "score": "1\/1" }, "total_porutham": { "score": "7\/10" }, "matching": "Excellent" } } } ]
Feng Shui: Flying Star
Xuan Kong Flying Star feng shui or Xuan Kong Fei Xing is one of disciplines in Feng Shui, and is an integration of the principles of Yin Yang, the interactions between the five elements, the eight trigrams, the Lo Shu numbers, and the 24 Mountains, by using time, space and objects to create an astrological chart to analyze positive auras and negative auras of a building. These include analyzing wealth, mental and physiological states, success, relationships with external parties, and health of the inhabitant. During the Qing Dynasty, it was popularized by a grandmaster Shen Zhu Ren, with the book that he wrote called Mr. Shen's Study of Xuan Kong, or Shen Shi Xuan Kong Xue.
Flying Star Feng Shui does not limit itself to buildings for the living or Yang Zhai, where rules pertaining to directions equally apply to all built structures; it also applies to grave sites and buildings for spirits or Yin Zhai.
Star | Element | Description | Good/Bad |
1 | Water | Success, Career | Good |
2 | Earth | Illness | Bad |
3 | Wood | Arguments, Conflict | Neutral |
4 | Wood | Education, Romance | Neutral |
5 | Earth | Misfortune | Bad |
6 | Metal | Indirect Wealth | Good |
7 | Metal | Robbery, Violence | Bad |
8 | Earth | Success | Excellent |
9 | Fire | Multiplying Adjacent Stars | Good |
While a normal compass is sufficient in determining the direction of a house facing as long as it is accurate, feng shui masters would use the Luo Pan whenever possible. Luo Pan enables a geomancer to quickly identify which of the 24 mountains the property is facing and sitting on.
The 24 mountains refer to the 24 possible directions; with 8 cardinal directions: North (N), South (S), East (E), West (W), Northeast (NE), Northwest (NW), Southeast (SE), Southwest (SW); being split into 3. Thus, making up the total of 24 directions.
# | Facing | Mountain | Angle | Element |
---|---|---|---|---|
0 | N1 | 壬 Ren | 337.5° - 352.5° | + Water |
1 | N2 | 子 Zi | 352.5° - 7.5° | + Water |
2 | N3 | 癸 Gui | 7.5° - 22.5° | – Water |
3 | NE1 | 丑 Chou | 22.5° - 37.5° | – Earth |
4 | NE2 | 艮 Gen | 37.5° - 52.5° | + Earth |
5 | NE3 | 寅 Yin | 52.5° - 67.5° | + Wood |
6 | E1 | 甲 Jia | 67.5° - 82.5° | + Wood |
7 | E2 | 卯 Mao | 82.5° - 97.5° | – Wood |
8 | E3 | 乙 Yi | 97.5° - 112.5° | – Wood |
9 | SE1 | 辰 Chen | 112.5° - 127.5° | + Earth |
10 | SE2 | 巽 Xun | 127.5° - 142.5° | – Wood |
11 | SE3 | 巳 Si | 142.5° - 157.5° | – Fire |
12 | S1 | 丙 Bing | 157.5° - 172.5° | + Fire |
13 | S2 | 午 Wu | 172.5° - 187.5° | + Fire |
14 | S3 | 丁 Ding | 187.5° - 202.5° | – Fire |
15 | SW1 | 未 Wei | 202.5° - 217.5° | – Earth |
16 | SW2 | 坤 Kun | 217.5° - 232.5° | – Earth | 17 | SW3 | 申 Shen | 232.5° - 247.5° | + Metal |
18 | W1 | 庚 Geng | 247.5° - 262.5° | + Metal |
19 | W2 | 酉 Dui | 262.5° - 277.5° | – Metal |
20 | W3 | 辛 Xin | 277.5° - 292.5° | – Metal |
21 | NW1 | 戌 Xu | 292.5° - 307.5° | + Earth |
22 | NW2 | 乾 Qian | 307.5° - 322.5° | + Metal |
23 | NW3 | 亥 Hai | 322.5° - 337.5° | – Water |
Each cardinal direction takes up 45°, while each mountain takes up 15° within a cardinal direction.
GET /feng-shui-flying-star.html?year={year}&angle={angle}&replacement={replacement}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/feng-shui-flying-star.html?year={year}&angle={angle}&replacement={replacement}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/feng-shui-flying-star.html?year={year}&angle={angle}&replacement={replacement}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
year | Required | Year of construction |
angle | Required | Facing angle direction [0°-359°] |
replacement | Required | Star replacement [0=No|1=Yes] |
[ { "status": "success", "message": "Feng Shui: Flying Star", "data": { "year": "1955", "angle": "297", "replacement": "0", "flying_star": { "facing": { "description": "Facing: Northwest Palace", "northwest": { "name": "Northwest", "short": "NW", "nw1": 3, "nw2": 5, "nw3": 6 }, "north": { "name": "North", "short": "N", "n1": 8, "n2": 1, "n3": 1 }, "northeast": { "name": "Northeast", "short": "NE", "ne1": 1, "ne2": 3, "ne3": 8 }, "west": { "name": "West", "short": "W", "w1": 2, "w2": 4, "w3": 7 }, "center": { "name": "Center", "short": "C", "c1": 4, "c2": 6, "c3": 5 }, "east": { "name": "East", "short": "E", "e1": 6, "e2": 8, "e3": 3 }, "southwest": { "name": "Southwest", "short": "SW", "sw1": 7, "sw2": 9, "sw3": 2 }, "south": { "name": "South", "short": "S", "s1": 9, "s2": 2, "s3": 9 }, "southeast": { "name": "Southeast", "short": "SE", "se1": 5, "se2": 7, "se3": 4 } }, "comment": "" } } } ]
Baby Gender Predictor
The Chinese Baby Gender Chart was buried in a royal tomb over 700 years ago. Legend says that this chart is 93-percent accurate and this chart is currently on display at the Beijing Institute of Science. This chart has been used to predict the gender of an unborn child based on the mother's age and month of conception. The Baby Gender Predictor is based off the Chinese Lunar Calendar, and actually does the calculations to convert the mother's age to the proper format.
This baby gender prediction works based on the Chinese calendar and the conception of Lunar age. If you want to predict the gender of your future baby using this system, you need first to calculate your lunar mother age. Usually it's 2 years higher than your real age of conception, then based on your lunar and the Chinese lunar calendar you can intersect the age and month of conception to find the gender of your future baby. Using our calculator this task is much easier - we calculate your lunar age and everything else for you.
Note: The only way to get an accurate baby gender prediction is via a medical test. An amniocentesis or chorionic villus sampling test will be able to accurately predict the gender of your baby. Doctors will not perform these invasive tests just for the purpose of baby gender prediction. Ultrasounds can provide an semi-accurate baby gender prediction as well, but wrong gender predictions are made regularly.
GET /baby-gender-predictor.html?age={age}&month={month}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/baby-gender-predictor.html?age={age}&month={month}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/baby-gender-predictor.html?age={age}&month={month}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
age | Required | Age of conception [18-45] |
month | Required | Month of conception [1-12] |
[ { "status": "success", "message": "Baby Gender Predictor", "data": { "age": "32", "month": "11", "lunar": { "age": 34 }, "gender": "boy" } } ]
Rising Sign Ascendant by Cordinates
The ascendant ( or As), or rising sign, is the zodiacal sign and degree that was ascending on the eastern horizon at the specific time and location of an event. According to astrological theory, celestial phenomena reflect or determine human activity on the principle of "as above so below". Thus astrologers believe that the ascendant signifies a person's awakening consciousness, in the same way that the Sun's appearance on the eastern horizon signifies the dawn of a new day.
The Ascendant is considered to be of great significance in all schools of astrology because it in effect serves as the filter through which everything in a horoscope- including the Sun and Moon- is expressed. Most astrologers believe that the Rising Sign exerts an influence equal to or more powerful than the Sun and Moon. In Jyotish, the ascendant is without question the most individual and defining element in the chart.
GET /rising-sign-ascendant.html?datetime={datetime}&latitude={latitude}&longitude={longitude}&method={method}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/rising-sign-ascendant.html?datetime={datetime}&latitude={latitude}&longitude={longitude}&method={method}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/rising-sign-ascendant.html?datetime={datetime}&latitude={latitude}&longitude={longitude}&method={method}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
datetime | Required | Datetime |
latitude | Required | Latitude |
longitude | Required | Longitude |
method | Required | Method type: western|vedic |
[ { "status": "success", "message": "Rising Sign Ascendant", "data": { "datetime": "2002-12-03T13:40:12", "latitude": "41.85003300", "longitude": "-87.65005200", "timezone": "America\/Chicago", "method": "western", "ascendant": { "sign": "Pisces", "interpretation": "...", "position": { "degrees": 20, "minutes": 44, "seconds": "08" } } } } ]
Rising Sign Ascendant by Location
The ascendant ( or As), or rising sign, is the zodiacal sign and degree that was ascending on the eastern horizon at the specific time and location of an event. According to astrological theory, celestial phenomena reflect or determine human activity on the principle of "as above so below". Thus astrologers believe that the ascendant signifies a person's awakening consciousness, in the same way that the Sun's appearance on the eastern horizon signifies the dawn of a new day.
The Ascendant is considered to be of great significance in all schools of astrology because it in effect serves as the filter through which everything in a horoscope- including the Sun and Moon- is expressed. Most astrologers believe that the Rising Sign exerts an influence equal to or more powerful than the Sun and Moon. In Jyotish, the ascendant is without question the most individual and defining element in the chart.
GET /rising-sign-ascendant.html?datetime={datetime}&locid={locid}&method={method}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/rising-sign-ascendant.html?datetime={datetime}&locid={locid}&method={method}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/rising-sign-ascendant.html?datetime={datetime}&locid={locid}&method={method}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
datetime | Required | Datetime |
locid | Required | Location Id |
method | Required | Method type: western|vedic |
[ { "status": "success", "message": "Rising Sign Ascendant", "data": { "datetime": "2002-12-03T13:40:12", "latitude": "41.85003300", "longitude": "-87.65005200", "timezone": "America\/Chicago", "method": "western", "ascendant": { "sign": "Pisces", "interpretation": "...", "position": { "degrees": 20, "minutes": 44, "seconds": "08" } } } } ]
Planet Position by Cordinates
Planet position is a representation of the celestial bodies position in the sky as seen from Earch at any given time and location.
The position of the planets in the heavens and their insertion in the proper house is of crucial importance for casting an accurate horoscope.
GET /planet-position.html?datetime={datetime}&latitude={latitude}&longitude={longitude}&method={method}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/planet-position.html?datetime={datetime}&latitude={latitude}&longitude={longitude}&method={method}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/planet-position.html?datetime={datetime}&latitude={latitude}&longitude={longitude}&method={method}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
datetime | Required | Datetime |
latitude | Required | Latitude |
longitude | Required | Longitude |
method | Required | Method type: western|vedic |
[ { "status": "success", "message": "Planet Position", "data": { "datetime": "2002-07-23T13:40:12", "latitude": "41.85003300", "longitude": "-87.65005200", "timezone": "America\/Chicago", "method": "western", "planet_position": [ { "id": 0, "name": "Sun", "fulldegree": 120.78306675570711, "degree": 0.78306675570711093, "retrograde": "", "sign": { "id": 5, "name": "Leo", "lord": "Sun" }, "house": 10, "aspect": [ 4 ] }, { "id": 1, "name": "Moon", "fulldegree": 293.98226111212233, "degree": 23.98226111212233, "retrograde": "", "sign": { "id": 10, "name": "Capricorn", "lord": "Saturn" }, "house": 3, "aspect": [ 9 ] }, { "id": 2, "name": "Mercury", "fulldegree": 123.95666699447698, "degree": 3.9566669944769757, "retrograde": "", "sign": { "id": 5, "name": "Leo", "lord": "Sun" }, "house": 10, "aspect": [ 4 ] }, { "id": 3, "name": "Venus", "fulldegree": 164.40909552806804, "degree": 14.409095528068036, "retrograde": "", "sign": { "id": 6, "name": "Virgo", "lord": "Mercury" }, "house": 11, "aspect": [ 5 ] }, { "id": 4, "name": "Mars", "fulldegree": 126.54738993872279, "degree": 6.5473899387227874, "retrograde": "", "sign": { "id": 5, "name": "Leo", "lord": "Sun" }, "house": 10, "aspect": [ 1, 4, 5 ] }, { "id": 5, "name": "Jupiter", "fulldegree": 118.0097097521671, "degree": 28.009709752167097, "retrograde": "", "sign": { "id": 4, "name": "Cancer", "lord": "Moon" }, "house": 9, "aspect": [ 1, 3, 5 ] }, { "id": 6, "name": "Saturn", "fulldegree": 83.880580033076427, "degree": 23.880580033076427, "retrograde": "", "sign": { "id": 3, "name": "Gemini", "lord": "Mercury" }, "house": 8, "aspect": [ 2, 5, 10 ] }, { "id": 7, "name": "Uranus", "fulldegree": 327.88353589357229, "degree": 27.883535893572287, "retrograde": "Rx", "sign": { "id": 11, "name": "Aquarius", "lord": "Saturn" }, "house": 4, "aspect": "" }, { "id": 8, "name": "Neptune", "fulldegree": 309.82909475539788, "degree": 9.8290947553978754, "retrograde": "Rx", "sign": { "id": 11, "name": "Aquarius", "lord": "Saturn" }, "house": 4, "aspect": "" }, { "id": 9, "name": "Pluto", "fulldegree": 255.19892563598381, "degree": 15.198925635983812, "retrograde": "Rx", "sign": { "id": 9, "name": "Sagittarius", "lord": "Jupiter" }, "house": 2, "aspect": "" }, { "id": 10, "name": "Rahu", "fulldegree": 75.567596535476383, "degree": 15.567596535476383, "retrograde": "Rx", "sign": { "id": 3, "name": "Gemini", "lord": "Mercury" }, "house": 8, "aspect": "" }, { "id": 11, "name": "Ketu", "fulldegree": 255.56759653547638, "degree": 15.567596535476383, "retrograde": "Rx", "sign": { "id": 9, "name": "Sagittarius", "lord": "Jupiter" }, "house": 2, "aspect": "" } ] } } ]
Planet Position by Location
Planet position is a representation of the celestial bodies position in the sky as seen from Earch at any given time and location.
The position of the planets in the heavens and their insertion in the proper house is of crucial importance for casting an accurate horoscope.
GET /planet-position.html?datetime={datetime}&locid={locid}&method={method}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/planet-position.html?datetime={datetime}&locid={locid}&method={method}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/planet-position.html?datetime={datetime}&locid={locid}&method={method}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
datetime | Required | Datetime |
locid | Required | Location Id |
method | Required | Method type: western|vedic |
[ { "status": "success", "message": "Planet Position", "data": { "datetime": "2002-07-23T13:40:12", "latitude": "41.85003300", "longitude": "-87.65005200", "timezone": "America\/Chicago", "method": "western", "planet_position": [ { "id": 0, "name": "Sun", "fulldegree": 120.78306675570711, "degree": 0.78306675570711093, "retrograde": "", "sign": { "id": 5, "name": "Leo", "lord": "Sun" }, "house": 10, "aspect": [ 4 ] }, { "id": 1, "name": "Moon", "fulldegree": 293.98226111212233, "degree": 23.98226111212233, "retrograde": "", "sign": { "id": 10, "name": "Capricorn", "lord": "Saturn" }, "house": 3, "aspect": [ 9 ] }, { "id": 2, "name": "Mercury", "fulldegree": 123.95666699447698, "degree": 3.9566669944769757, "retrograde": "", "sign": { "id": 5, "name": "Leo", "lord": "Sun" }, "house": 10, "aspect": [ 4 ] }, { "id": 3, "name": "Venus", "fulldegree": 164.40909552806804, "degree": 14.409095528068036, "retrograde": "", "sign": { "id": 6, "name": "Virgo", "lord": "Mercury" }, "house": 11, "aspect": [ 5 ] }, { "id": 4, "name": "Mars", "fulldegree": 126.54738993872279, "degree": 6.5473899387227874, "retrograde": "", "sign": { "id": 5, "name": "Leo", "lord": "Sun" }, "house": 10, "aspect": [ 1, 4, 5 ] }, { "id": 5, "name": "Jupiter", "fulldegree": 118.0097097521671, "degree": 28.009709752167097, "retrograde": "", "sign": { "id": 4, "name": "Cancer", "lord": "Moon" }, "house": 9, "aspect": [ 1, 3, 5 ] }, { "id": 6, "name": "Saturn", "fulldegree": 83.880580033076427, "degree": 23.880580033076427, "retrograde": "", "sign": { "id": 3, "name": "Gemini", "lord": "Mercury" }, "house": 8, "aspect": [ 2, 5, 10 ] }, { "id": 7, "name": "Uranus", "fulldegree": 327.88353589357229, "degree": 27.883535893572287, "retrograde": "Rx", "sign": { "id": 11, "name": "Aquarius", "lord": "Saturn" }, "house": 4, "aspect": "" }, { "id": 8, "name": "Neptune", "fulldegree": 309.82909475539788, "degree": 9.8290947553978754, "retrograde": "Rx", "sign": { "id": 11, "name": "Aquarius", "lord": "Saturn" }, "house": 4, "aspect": "" }, { "id": 9, "name": "Pluto", "fulldegree": 255.19892563598381, "degree": 15.198925635983812, "retrograde": "Rx", "sign": { "id": 9, "name": "Sagittarius", "lord": "Jupiter" }, "house": 2, "aspect": "" }, { "id": 10, "name": "Rahu", "fulldegree": 75.567596535476383, "degree": 15.567596535476383, "retrograde": "Rx", "sign": { "id": 3, "name": "Gemini", "lord": "Mercury" }, "house": 8, "aspect": "" }, { "id": 11, "name": "Ketu", "fulldegree": 255.56759653547638, "degree": 15.567596535476383, "retrograde": "Rx", "sign": { "id": 9, "name": "Sagittarius", "lord": "Jupiter" }, "house": 2, "aspect": "" } ] } } ]
Bone Weight at Birth
The Bone Weight Astrology is invented by Yuan Tian Gang, a very famous astrologer of the Tang Dynasty. It is one of the most simplified and popular Chinese astrology systems used to predict a person's life fortune.
This system can be found in the Chinese Almanac or Tong Sheng, under the Weighing Bone Song. As the method is so easy to learn and does not require professional guidance, it is a Do-It-Yourself Fortune-Telling.
GET /bone-weight-birth.html?dob={dob}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/bone-weight-birth.html?dob={dob}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/bone-weight-birth.html?dob={dob}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
dob | Required | Date of Birth |
[ { "status": "success", "message": "Bone Weight at Birth", "data": { "dob": "1997-04-23T03:27:12", "bone_weight": { "title": "Safe and Sure", "weight": "3.1", "liang": "3", "chin": "1", "solar_birthday": "1997-04-23", "lunar_birthday": "1997-03-17", "highlight": "...", "description": "..." } } } ]
Past Life: Psychological Profile
Who were you in a past life? There are many ways to find it out, mainly categorized as hypnotic and non-hypnotic techniques. Though others regard them as fantasies or delusions or a type of confabulation, a deeper invasive hypnosis technique used to recover memories of past lives or incarnations, called Past Life Regression, is typically undertaken either in pursuit of a spiritual experience, or in a psychotherapeutic setting.
Past Life calculation is based purely on a lighter non-invasive, non-hypnotic technique to look into your soul and discover who you were in a past life and reveal it to you now. Dare you take it? Perhaps you were a king and queen in a past life! Sometimes your past life can reflect who you are today, and without knowing it your role model could have been you 100 years ago. Take the quiz to find out your past life! The past life test will discover exactly who you are:
- Determine your past life!
- Just who are you?
- Who were you?
- Were you famous or poor?
- Were you talented or a loser?
- Did people like you or despise you?
GET /past-life.html?dob={dob}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/past-life.html?dob={dob}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/past-life.html?dob={dob}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
dob | Required | Date of Birth |
[ { "status": "success", "message": "Past Life", "data": { "dob": "2001-06-17", "past_life": { "gender": " female", "year": "1825", "country": "West Africa", "profession": "medic, surgeon or herbalist", "profile": "...", "lesson": "..." } } } ]
Nakshatra, the Birth Star or Naalu by Cordinates
Nakshatras, or lunar constellations, are directly connected to the Moon and her myriad of expressions. The Moon changes signs (houses) roughly every 2.3 days, taking 28 days to move through the twelve signs of the zodiac. This gives two weeks for a waxing (bright half) Moon and two weeks for a waning (dark half) Moon.
The Moon is connected to our intuition, intelligence and the nature of the mind and emotions. These "Moon parts" within us are ever-changing, fickle, and correlate to the endless movement and change of the Moon. Whereas the movement of the Sun is linked to the 12 signs of the zodiac, the movement of the Moon is connected to the 27 nakshatras. The Moon is the lord of all the nakshatras, where the Sun is the lord of all the rasis (signs).
In the Vedic system of astrology, there are 27 nakshatras (though some texts refer to 28 for specific spiritual purposes) which easily divides the 360 degrees of entire zodiac into roughly 13.2 degrees of arc per nakshatra.
The nakshatras have a close connection to the Moon and nature as well as mind and emotions. They give us a heightened sense of lunar intelligence and share her mysteries with us very intimately. Each nakshatra is ruled by a deity (a personified manifestation of its pranic existence), has at least one symbol, and also has a ruling planet as well. These connections help to further explain what the nakshatra can offer us at any given time and how it will effect us.
The nakshatras dictate of what the first syllable of a baby's name should be, a phonetic sound of the actual syllable .. not the exact spelling. In general the chances are that a name could begin with the same phonetic sound but a different spelling.
GET /nakshatra.html?dob={dob}&latitude={latitude}&longitude={longitude}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/nakshatra.html?dob={dob}&latitude={latitude}&longitude={longitude}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/nakshatra.html?dob={dob}&latitude={latitude}&longitude={longitude}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
dob | Required | Date of Birth |
latitude | Required | Latitude |
longitude | Required | Longitude |
[ { "status": "success", "message": "Nakshatra, the Birth Star or Naalu", "data": { "dob": "1997-04-23T03:27:12", "latitude": "41.8874", "longitude": "-87.631799999999998", "timezone": "America\/Chicago", "nakshaktra": { "star": "Swati", "characteristics": "...", "translation": "The priest, the sword.", "symbol": "Coral, strong intuitive and psychic properties, a young sprout quivering in the wind.", "animal": "Male Buffalo.", "planet": "Rahu", "nature": "Deva", "deity": "Vayu, the demigod of wind, air, breath, and prana.", "western_star": "Arcturus, Alpha Bootis", "syllables": "Ru, Re, Ro, Roo, Ta, Taa", "positive_traits": "...", "negative_traits": "...", "career": "...", "compatibility": "Purnavasu, Chitra, Hasta", "incompatibility": "Rohini, Bharani" } } } ]
Nakshatra, the Birth Star or Naalu by Location
Nakshatras, or lunar constellations, are directly connected to the Moon and her myriad of expressions. The Moon changes signs (houses) roughly every 2.3 days, taking 28 days to move through the twelve signs of the zodiac. This gives two weeks for a waxing (bright half) Moon and two weeks for a waning (dark half) Moon.
The Moon is connected to our intuition, intelligence and the nature of the mind and emotions. These "Moon parts" within us are ever-changing, fickle, and correlate to the endless movement and change of the Moon. Whereas the movement of the Sun is linked to the 12 signs of the zodiac, the movement of the Moon is connected to the 27 nakshatras. The Moon is the lord of all the nakshatras, where the Sun is the lord of all the rasis (signs).
In the Vedic system of astrology, there are 27 nakshatras (though some texts refer to 28 for specific spiritual purposes) which easily divides the 360 degrees of entire zodiac into roughly 13.2 degrees of arc per nakshatra.
The nakshatras have a close connection to the Moon and nature as well as mind and emotions. They give us a heightened sense of lunar intelligence and share her mysteries with us very intimately. Each nakshatra is ruled by a deity (a personified manifestation of its pranic existence), has at least one symbol, and also has a ruling planet as well. These connections help to further explain what the nakshatra can offer us at any given time and how it will effect us.
The nakshatras dictate of what the first syllable of a baby's name should be, a phonetic sound of the actual syllable .. not the exact spelling. In general the chances are that a name could begin with the same phonetic sound but a different spelling.
GET /nakshatra.html?dob={dob}&locid={locid}
Command Line
curl --request GET \ --url 'https://astrologjia.com/api/v1/nakshatra.html?dob={dob}&locid={locid}' \ --header 'Authorization: Bearer {api_key}' \
PHP
$url = "https://astrologjia.com/api/v1/nakshatra.html?dob={dob}&locid={locid}"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "Accept: application/json", "Authorization: Bearer {api_key}", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl);
Parameters | Details | Description |
---|---|---|
dob | Required | Date of Birth |
locid | Required | Location Id |
[ { "status": "success", "message": "Nakshatra, the Birth Star or Naalu", "data": { "dob": "1997-04-23T03:27:12", "latitude": "41.8874", "longitude": "-87.631799999999998", "timezone": "America\/Chicago", "nakshaktra": { "star": "Swati", "characteristics": "...", "translation": "The priest, the sword.", "symbol": "Coral, strong intuitive and psychic properties, a young sprout quivering in the wind.", "animal": "Male Buffalo.", "planet": "Rahu", "nature": "Deva", "deity": "Vayu, the demigod of wind, air, breath, and prana.", "western_star": "Arcturus, Alpha Bootis", "syllables": "Ru, Re, Ro, Roo, Ta, Taa", "positive_traits": "...", "negative_traits": "...", "career": "...", "compatibility": "Purnavasu, Chitra, Hasta", "incompatibility": "Rohini, Bharani" } } } ]
What is your Horoscope Sign?
Ashburn, Virginia, United States