SEARCH ASTROLOGY API DOCS

Home
Horoscope

Sun Sign prediction For Next Day/sun_sign_prediction/daily/next/:zodiacName

Get next day sun sign prediction by zodiac name

API Endpoint : sun_sign_prediction/daily/next/:zodiacName
Method : POST
Full URL :
https://json.astrologyapi.com/v1/sun_sign_prediction/daily/next/: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": "21-3-2024",
	"prediction": {
		"personal_life": "Today's Moon in Leo trine the North Node in Aries suggests a day where you might prefer solitude over socializing. This pause is essential for your personal growth, giving you space to rethink and refresh your perspective on relationships. It's a perfect time for self-reflection and to focus on personal desires.",
		"profession": "Engaging in a conversation with someone who brings a spiritual perspective could offer relief from career pressures. Today's astrological alignment encourages you to seek guidance and find peace amidst work challenges. Their wisdom can help you find inner calm, a valuable asset in navigating professional hurdles.",
		"health": "Your sensitivity to your environment is heightened, making you more prone to indulgence. While the urge to treat yourself might be strong, remember the importance of balance. Today's alignment warns against overindulgence. Sticking to your fitness routine is crucial to maintaining your well-being.",
		"emotions": "You might find your emotions more intense and your dreams more vivid today. This intensity, while overwhelming, is a path to understanding your deeper feelings. Acknowledge these emotions, but strive for balance to prevent them from overtaking your sense of reality.",
		"travel": "With today's planetary positions, short, reflective retreats could be particularly rewarding. A solo journey to a place that inspires you could offer valuable insights and a renewed sense of purpose. Consider this if you've been feeling the urge to escape and recharge.",
		"luck": "The Moon's trine to the North Node enhances your intuitive sense, making today favorable for trusting your instincts. Your gut feelings could lead you to unexpected opportunities or decisions that align well with your path forward. Listen closely to your inner voice.",
		"personal_life_rating": 6,
		"profession_rating": 7,
		"health_rating": 5,
		"emotions_rating": 6,
		"travel_rating": 8,
		"luck_rating": 7
	}
}
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/next/" + 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);
    }
  }
);