🌿 Jyotishgher Astrology API

Authentic sidereal predictions – love, career, marriage, aura, remedies, lucky mantra & more. Every request requires a valid secure_token. Designed for astrologers, developers, and spiritual apps.

📜 Overview

The JyotishGher Daily Horoscope API delivers rich Vedic astrology content based on Nirayana system. Unlike generic horoscopes, our API returns love, career, health, marriage, aura, lucky dress, mantra, mood, remedy, lucky number, color, and positivity score. Ideal for daily astrology apps, chatbots, and content automation. Each response is JSON formatted and requires a secure_token to access.

✅ Base URL: https://jyotishgher.in/api/horoscope/daily-horoscope-api.php

🔐 Authentication – secure_token

To prevent abuse, JyotishGher uses token-based authentication. Obtain your unique secure_token by registering at JyotishGher Developer Portal (support@jyotishgher.in).

Method 1 (Query Param):
https://jyotishgher.in/api/horoscope/daily-horoscope-api.php?signName=Aries&secure_token=YOUR_TOKEN
Method 2 (Authorization Header – Recommended):
Authorization: Bearer YOUR_SECURE_TOKEN

Security: Never expose token in client‑side code; always proxy via backend. Use HTTPS only.

📡 Request Parameters

ParameterTypeRequiredDescription
signNamestringYesZodiac name: Aries, Taurus, Gemini, Cancer, Leo, Virgo, Libra, Scorpio, Sagittarius, Capricorn, Aquarius, Pisces
secure_tokenstringYesUnique API key provided by JyotishGher
typestringNoDefault "Daily". (Future scope: Weekly)
dateYYYY-MM-DDNoCustom date (default today)

💻 Code Examples (cURL, JS, Python)

cURL with Header token:

curl -X GET "https://api.jyotishgher.in/horoscope/daily-horoscope-api.php?signName=Aries" \
-H "Authorization: Bearer YOUR_SECURE_TOKEN"

JavaScript / Fetch:

fetch('https://api.jyotishgher.in/horoscope/daily-horoscope-api.php?signName=Aries', {
  headers: { 'Authorization': 'Bearer YOUR_SECURE_TOKEN' }
})
.then(res => res.json())
.then(data => console.log(data.data.love, data.data.career));

Python (requests):

import requests
url = "https://jyotishgher.in/api/horoscope/daily-horoscope-api.php"
params = {"signName": "Aries"}
headers = {"Authorization": "Bearer YOUR_SECURE_TOKEN"}
resp = requests.get(url, params=params, headers=headers)
data = resp.json()
print(data["data"]["marriage"], data["data"]["luckyMantra"])

📦 Official API Response Example (Aries Daily)

{
  "status": "success",
  "signName": "Aries",
  "type": "Daily",
  "range": "04/03/2026",
  "data": {
    "id": "6",
    "dateYear": "1/5/2026",
    "signName": "Aries",
    "love": "Romance needs honest talk.",
    "career": "New project excites you.",
    "health": "Immunity strong—eat citrus.",
    "marriage": "Plan future with partner.",
    "aura": "Assertive & glowing.",
    "luckyDress": "Green for growth.",
    "luckyMantra": "I am worthy.",
    "mood": "Optimistic & bold.",
    "remedy": "Feed birds.",
    "luckyNumber": "1",
    "luckyColor": "Green",
    "positivity": "87"
  }
}

Field meanings: love (romantic guidance), career (work predictions), marriage (relationship insights), aura (spiritual energy), luckyMantra (daily affirmation), remedy (simple Vedic remedy), positivity (percentage score). All fields are tailored for each zodiac sign.

⚠️ Error Codes & Handling

  • 401 Unauthorized – Missing/invalid secure_token → re-check token.
  • 400 Bad Request – Invalid signName or malformed date.
  • 429 Too Many Requests – Rate limit (1k/hour per token).
  • 500 Internal Error – Temporary server issue → retry after 5s.
{ "status": "error", "code": 401, "message": "secure_token missing or invalid" }

🚀 AI‑Powered SEO Integration Tips

Boost your website’s ranking using JyotishGher API data:

  1. Dynamic Meta Tags: Inject love and career into meta description for each sign.
  2. Structured Data (JSON-LD): Add Article schema with luckyNumber, luckyColor, positivity as custom properties.
  3. SSR or Static Generation: Pre‑fetch daily horoscopes for 12 signs every 6 hours → create static HTMLs.
  4. Rich Snippets: Show aura and mood in search results to increase CTR.
  5. Internal Linking: Link from horoscope pages to remedy pages (e.g., “Feed birds for better luck”).

❓ Frequently Asked Questions

Q: How to get secure_token?
A: Email api@jyotishgher.in with your project details. Free tier: 500 requests/day.

Q: Is this Vedic or Western?
A: Pure Vedic sidereal (Lahiri Ayanamsa) with traditional remedies.

Q: Can I fetch marriage predictions separately?
A: Yes, the data.marriage field is included for every sign daily.

Q: What’s the update frequency?
A: Daily at 00:00 IST. Use date parameter for historical/future (max ±7 days).

Q: Does the API include lucky mantra text?
A: Absolutely, the luckyMantra field provides a powerful affirmation for the day.

Ready to integrate Vedic wisdom? Get your secure_token and start building with JyotishGher’s astrology API.

📧 api@jyotishgher.in | 📜 Full Documentation v2.2