Get your first API response in under 5 minutes.
Sign up at /register. You get 100 free requests/month immediately — no credit card required.
Go to Dashboard → API Keys and create a new key. Copy it — it's only shown once.
# Your key looks like this
va_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxPass your API key in the X-API-Key header.
curl -X POST \
https://vedic-astrology-production-a045.up.railway.app/api/v1/calculate/chart \
-H "Content-Type: application/json" \
-H "X-API-Key: va_live_xxxxxxxxxxxx" \
-d '{
"name": "Arjuna",
"date": "1990-01-15",
"time": "08:30",
"location": "Mumbai, India"
}'All responses follow this structure:
{
"status": "pass",
"payload": {
"ascendant": "Scorpio",
"moonSign": "Cancer",
"sunSign": "Capricorn",
"planets": [ ... ]
}
}