🌍 Astrocartography API and ✋ Palmistry API are now live. Ship them in your app today.Get Started
API Documentation

Life Forecast Report

The life_forecast_report/tropical API provides a daily astrology forecast for a given individual. It includes a list of various planet positions and corresponding forecasts, giving insights into the individual's mental, emotional, and creative state.
POSThttps://json.astrologyapi.com/v1/life_forecast_report/tropical

Parameters

ParameterTypeDescription
dayrequiredDate of birth, eg: 10
monthrequiredMonth of birth, eg: 5
yearrequiredYear of birth, eg: 1990
hourrequiredHour of birth, eg: 19
minrequiredMinute of birth, eg: 55
latrequiredLatitude, eg: 19.2056
lonrequiredLongitude, eg: 25.2056
tzonerequiredTimezone, eg: 5.5
house_typerequiredDefault : placidus // koch/topocentric/poryphry/equal_house/whole_sign

Highlights

    Sample PDFs

    Life Forecast PDF Samples

    Following are the PDF report samples you can download. These generated PDFs are using AstrologyAPI branding and everything can be customised to suit your company branding and style.

    Supported Languages

    en

    Request

    {
      "day": 10,
      "month": 5,
      "year": 1990,
      "hour": 19,
      "min": 55,
      "lat": 19.2056,
      "lon": 25.2056,
      "tzone": 5.5,
      "house_type": "placidus"
    }

    Code samples

    curl --location 'https://json.astrologyapi.com/v1/life_forecast_report/tropical' \
      --header 'Content-Type: application/x-www-form-urlencoded' \
      --header 'Authorization: Basic <YOUR_API_KEY>' \
      --data 'day=10&month=5&year=1990&hour=19&min=55&lat=19.2056&lon=25.2056&tzone=5.5&house_type=placidus'
    

    Response

    {
      "life_forecast": [
        {
          "planet_position": "Transiting Moon Trine Natal Mercury",
          "date": "19-6-2017",
          "forecast": "Your feeling, intuitive side is balanced with your rational thought processes to give acute perceptive skills. You can read others easily and quickly assess any situation. Your are in touch with your own feelings to give sound judgement and decision-making skills."
        },
        {
          "planet_position": "Transiting Moon Opposition Natal Saturn",
          "date": "19-6-2017",
          "forecast": "This is not a good time for socializing as people may find you cold or distant. A morbid outlook on life is possible and you are likely to see the worst in other people and situations. While a Moon transit last only a few hours, moon phases pose a more serious problem and you will need to work hard to avoid your negative feelings manifesting as depression, loss or disappointment."
        },
        {
          "planet_position": "Transiting Moon Trine Natal Neptune",
          "date": "19-6-2017",
          "forecast": "Creative and artistic work such as music, composition and film are favored. You may receive inspiration to make a breakthrough in a project which has been causing frustration. Working in front of a mirror could provide the inspiration needed. Neptune also rules film and cameras so using the webcam to records your dreams and visions would be ideal."
        },
        {
          "planet_position": "Transiting Mercury Opposition Natal Mercury",
          "date": "19-6-2017",
          "forecast": "You are mentally sharp and alert now. Your curiosity is aroused regarding new ideas, unfamiliar facts and interesting concepts. Objectivity is strong and your thinking is not colored by emotional biases. Travel is likely."
        },
        {
          "planet_position": "Transiting Mercury Opposition Natal Neptune",
          "date": "19-6-2017",
          "forecast": "Your imagination is working overtime today. You may be interested in spiritual subjects or art and music today. Your thinking will tend to be idealistic, not necessarily realistic. Keep your feet on the ground and your head out of the clouds. Don't let anyone pull the wool over your eyes and stop daydreaming if there is work to be done."
        },
        {
          "planet_position": "Transiting Sun Square Natal Mars",
          "date": "20-6-2017",
          "forecast": "You are full of it today, high energy, force of will, and a dislike of any restraint. Slow down a little so you don't go flying off the handle. Physical, mental, and verbal confrontations are likely today, so stay in control. Don't speed today as the police may be watching you."
        },
        {
          "planet_position": "Transiting Mercury Square Natal Mars",
          "date": "21-6-2017",
          "forecast": "Don't go looking for trouble today. Trouble will find you quick enough. Watch your offhand remarks. You may bum more people out than you think. Be careful driving or working on machinery. Don't let little irritations get to you. Be tactful."
        }
      ]
    }