GuideFree Plan500 Calls/MonthNo Credit Card

Free Vedic Astrology API
500 Calls. All 80+ Endpoints. Forever.

Sign up in 30 seconds. Get an API key with 500 free monthly calls — no credit card, no expiry. Every endpoint available: kundli, panchang, dasha, dosha, matching, tarot, and more.

Get Free API Key →Compare All Plans

What Is Included in the Free Plan

Kundli / Birth Chart
Planet details, Divisional charts D1-D60, Chart image SVG/PNG, Ascendant report, Ashtakvarga
Panchang
Daily Panchang, Choghadiya Muhurta, Hora, Monthly Panchang, Sunrise/Sunset, Festivals
Dasha Systems
Vimshottari Mahadasha/Antardasha, Yogini Dasha, Char Dasha — all three systems
Dosha Analysis
Mangal Dosh, Kaalsarp Dosh, Manglik Dosh, Pitra Dosh, Papasamaya
Marriage Matching
Ashtakoot (North), Dashakoot (South), Rajju-Vedha, Papasamaya match
Extended Horoscope
Yoga list, KP houses, Shadbala, Jaimini Karakas, Gem suggestion, Sade Sati
Tarot
Full 78-card deck, daily card, all 6 spread types (Celtic Cross, 3-card, Yes/No, Relationship, Career)

Quick Start — cURL

terminal
# 1. Sign up at vedintelastroapi.com/auth/signup (free, no card)
# 2. Copy your API key from the dashboard
# 3. Make your first call:

curl "https://vedintelastroapi.com/api/v1/extended-horoscope/find-ascendant\
?api_key=vai_YOUR_KEY\
&dob=15/06/1990\
&tob=08:30\
&lat=19.0760\
&lon=72.8777\
&tz=5.5"

# Response:
# {
#   "status": 200,
#   "response": {
#     "ascendant": "Gemini",
#     "ascendant_lord": "Mercury",
#     "degree": 14.23,
#     "nakshatra": "Ardra"
#   },
#   "remaining_api_calls": 499
# }

Quick Start — Python

quickstart.py
import requests

API_KEY = "vai_YOUR_KEY"
BASE    = "https://vedintelastroapi.com/api/v1"

birth = {
  "api_key": API_KEY,
  "dob": "15/06/1990",  # DD/MM/YYYY
  "tob": "08:30",       # HH:MM 24hr
  "lat": 19.0760,
  "lon": 72.8777,
  "tz":  5.5            # IST
}

# Get kundli planets
planets = requests.get(f"{BASE}/horoscope/planet-details", params=birth).json()
print(planets["response"])  # dict of planet → { sign, degree, nakshatra, house }

# Get today's panchang (no birth data needed)
panchang = requests.get(f"{BASE}/panchang/panchang", params={
  "api_key": API_KEY,
  "date": "18/04/2026",
  "lat": 28.6139,
  "lon": 77.2090,
  "tz": 5.5
}).json()
print(panchang["response"]["tithi"])  # "Ekadashi"
Free
$0
500/mo
Forever free
Developer
$9/mo
5,000/mo
Most popular starter
Starter
$49/mo
100K/mo
Production ready
See all plans →

Free Plan — FAQs

What is included in the free Vedic astrology API plan?
The free plan includes 500 API calls per month with access to all 80+ endpoints — the same endpoints available on paid plans. This includes kundli, panchang, dasha, dosha, marriage matching, tarot, extended horoscope, and Jaimini systems. The only restrictions are the call volume (500/month) and rate limit (20 requests/second). No credit card is required to sign up.
Does the free plan expire?
No. The free plan is permanently free with no expiry. Your 500 calls reset every calendar month. You can use it indefinitely for development, testing, or light-traffic personal projects. Upgrade to a paid plan when you need more calls.
What happens when I exceed 500 calls?
Once your 500 free calls are used, the API returns a 429 Too Many Requests response with remaining_api_calls: 0. Your call counter resets on the 1st of each month. You can upgrade to the Developer plan ($9/mo, 5,000 calls) at any point from your dashboard — the upgrade activates instantly.
Can I use the free API in production?
Yes — for low-traffic personal projects. Many developers launch with the free tier and upgrade when call volume grows. For commercial applications serving real users, we recommend the Developer ($9/mo) or Starter ($49/mo) plan. The natal chart caching system means your call usage is lower than you might expect — repeat birth dates never consume additional calls.
How is this different from other free astrology APIs?
Most free astrology APIs offer a limited subset of endpoints or significantly reduced accuracy. Our free plan provides access to all 80+ production endpoints with full Swiss Ephemeris precision — the same computation engine used by professional Vedic astrology software. There is no "free tier endpoint" — every endpoint is the same quality on every plan.
Next Steps
Swiss Ephemeris + Node.js GuideDasha API Integration GuideKundli API Use CasePanchang API Use Case

Start building for free.

30-second signup. API key in your inbox. 500 calls every month — forever.

Get Your Free API Key →