SEARCH ASTROLOGY API DOCS

Home
Horoscope

Sun Sign prediction For Previous Day/sun_sign_prediction/daily/previous/:zodiacName

Get previous day sun sign prediction by zodiac name

API Endpoint : sun_sign_prediction/daily/previous/:zodiacName
Method : POST
Full URL :
https://json.astrologyapi.com/v1/sun_sign_prediction/daily/previous/:zodiacName

Where Zodiac name is -

aries,
taurus,
gemini,
cancer,
leo,
virgo,
libra,
scorpio,
sagittarius,
capricorn,
aquarius,
pisces

NOTE- Based on the timezone given

Request Data

ParamsData typeDescriptions

day required

month required

year required

hour required

min required

lat required

lon required

tzone required

int

int

int

int

int

float

float

float

date of birth, eg: 10

month of birth, eg: 5

year of birth, eg: 1990

hour, eg: 19

minute, eg: 55

latitude, eg: 19.2056

longitude, eg: 25.2056

timezone, eg: 5.5

Response Data

{
	"status": true,
	"sun_sign": "aries",
	"prediction_date": "19-3-2024",
	"prediction": {
		"personal_life": "A surprising twist could unfold at work, hinting at an unexpected romantic interest from a colleague. Today's transit of Mercury in Aries aligning with the North Node in your sign suggests that communication could spark this intrigue. If the feeling is mutual, you might find this connection deeply fulfilling. Otherwise, setting boundaries will be crucial to maintain your peace.",
		"profession": "An innovative idea catches your attention, urging you to expand it into something spectacular. However, today's planetary alignment advises caution. Instead of rushing into flashy transformations, a thorough investigation and gathering more insights will be beneficial. This careful approach will ensure your professional decisions are both bold and informed.",
		"health": "You're empowered to redefine your lifestyle, especially with today's astrological aspect encouraging transformation. It's an ideal moment to architect your health regime. Incorporating lighter meals and specific foods like peas, fennel, parsley, whole grains, and pistachios can boost your energy. Welcome this change to feel revitalized.",
		"emotions": "Today's transit brings a clarity of thought and purpose, helping you understand your emotions better. It's a day to listen to your inner voice, which will guide you through any confusion. Your emotional well-being benefits from clear communication and self-reflection.",
		"travel": "With Mercury's influence today, short trips, especially those related to learning or networking, could be particularly beneficial. These journeys may offer unexpected opportunities and insights.",
		"luck": "Your luck today may come through meaningful connections and communications. Pay attention to the messages you receive, as they could lead to fortunate outcomes.",
		"personal_life_rating": 7,
		"profession_rating": 6,
		"health_rating": 8,
		"emotions_rating": 7,
		"travel_rating": 5,
		"luck_rating": 6
	}
}
POST
var sdkClient = require("./sdk");

//Zodiac sign
var zodiacName = "aries";
var timezone = 5.5;

//Daily Horoscope APIs need to be called
var resource = "sun_sign_prediction/daily/previous/" + zodiacName;

// call dailyHoroCall method for daily predictions
var dailyHoroData = sdkClient.dailyHoroCall(
  resource,
  zodiacName,
  timezone,
  function (error, result) {
    if (error) {
      console.log("Error returned!!");
    } else {
      console.log("Response has arrived from API server --");
      console.log(result);
    }
  }
);