SEARCH ASTROLOGY API DOCS

Home
Indian Astrology

Horoscope Predictions/horoscope_prediction/weekly/:zodiacName

Weekly Horoscope Prediction

API Endpoint : horoscope_prediction/weekly/:zodiacName
Method : POST
Full URL :
https://json.astrologyapi.com/v1/horoscope_prediction/weekly/:zodiacName

Request Data

ParamsData typeDescriptions

timezone required

float required

timezone, eg: 5.5 // if not given default will taken as 5.5

Response Data

{   "status": true,   "sun_sign": "aries",   "prediction_start_date": "15 October 2017",   "prediction_end_date": "21 October 2017",   "prediction": "This is sample weekly report. A week filled with energy and activities makes you busy throughout. You enjoy love relationship, passion, beauty in everyway. Indulge yourself into some creativity as your creative vision can bring you great benefits. Visit an art exhibition or buy an antique art for your home, creative artwork or paintings can enhance you mood.Mid of the week might give you a feel of confused state it where decision making would be difficult, but things will get sorted as the weekend gets near. Love matters will blossom - a best time to go out on date, resolve conflicts, make up time for love, as this is week self expression comes easily. Your high energy levels shall keep you moving this week, it is your responsibility to maintain it thorough out. A good fitness plan along with the diet can help you achieve the goals, remember being consistent can make you reach there much faster!" }
POST
var sdkClient = require("./sdk");

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

//Daily Horoscope APIs need to be called
var resource = "horoscope_prediction/weekly/" + 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);
    }
  }
);