Guide14-Day Trial500 CallsNo Credit Card

Free Vedic Astrology API Trial
500 Calls. 132/132 Endpoints. 14 Days.

Sign up in 30 seconds. Get an API key with 500 calls over 14 days — no credit card. All 132 endpoints available: kundli, panchang, dasha, dosha, matching, tarot, and more.

Get Free API Key →Compare All Plans

What Is Included in the Free Trial

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/14 days
14-day trial
Developer
$9/mo
75,000/mo
Most popular starter
Starter
$49/mo
100K/mo
Production ready
See all plans →

Free Trial — FAQs

What is included in the free Vedic astrology API trial?
The free trial includes 500 API calls over 14 days with access to all 132 endpoints — kundli, panchang, dasha, dosha, marriage matching, tarot, extended horoscope, Jaimini systems, Chinese astrology, Japanese astrology, and Numerology all included. No credit card is required to sign up.
Does the free trial expire?
Yes. The free trial runs for 14 days from signup, with a 500-call cap. After 14 days, your API key stops working until you upgrade to a paid plan or purchase the ₹999 Dev Pack (30,000 calls, 3 months, one-time purchase).
What happens when I exceed 500 calls, or the 14 days run out?
Whichever limit you hit first, the API returns a clear error with remaining_api_calls: 0 and an upgrade link. There is no way to reset the trial by waiting — the 14-day clock runs regardless of usage. You can upgrade to the Developer plan ($9/mo, 75,000 calls) or buy the ₹999 Dev Pack (30,000 calls, 3 months) at any point from your dashboard — the upgrade activates instantly.
Can I use the free trial in production?
The trial is meant for evaluation and building — 14 days is enough to validate your integration, but it's time-boxed, not a permanent production tier. For commercial applications serving real users, upgrade to the Developer ($9/mo) or Starter ($49/mo) plan, or use the ₹999 Dev Pack as a cheaper interim step. 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 API trials?
Most free astrology API trials offer a limited subset of endpoints — often 20-30 "essential" ones. Our trial unlocks all 132 production endpoints with full VedIntel™ Precision Engine precision — the same computation engine used by professional Vedic astrology software — so you can build and validate a real feature, not just a narrow demo, before deciding to pay.
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, 14 days, no credit card.

Get Your Free API Key →