Sub-Lords | Significators | Ruling Planets | Placidus Cusps
The only API with a dedicated Krishnamurti Paddhati (KP) system. Get sub-lord tables, significator chains, ruling planets at query time, and AI-powered KP chart interpretation. Zero cross-contamination with Vedic Parashari concepts.
Everything KP astrologers need, programmatically
Complete sub-lord analysis for all 12 cusps and 9 planets. Star lord, sub lord, and sub-sub lord chains computed via Vedika Ephemeris with KP ayanamsa.
Which houses each planet signifies through its star lord and sub lord chain. Essential for KP prediction methodology.
Ruling planets at the time of query. Day lord, Moon sign lord, Moon star lord, Moon sub lord, lagna sign/star/sub lords.
KP uses Placidus cusps (not equal house or whole sign). Vedika computes accurate Placidus cusps via Vedika Ephemeris.
100% isolation from Vedic Parashari. No yogas, no doshas, no Vimshottari dasha in KP responses. Clean KP-only output.
Vedika AI can interpret KP charts in natural language. Ask "Will I get the job?" and get KP-methodology answers based on sub-lord analysis.
The only API with a dedicated KP system
| Feature | Vedika API |
Competitors |
|---|---|---|
| Dedicated KP System | ||
| Sub-Lord Tables | 12 cusps + 9 planets | Not available |
| Ruling Planets | ||
| System Isolation | 100% (no cross-contamination) | Mixed with Vedic |
| AI Interpretation | ||
| Placidus Cusps | ||
| Free Sandbox | Unlimited (mock data) | Limited / None |
Get KP chart data via REST API
# KP Birth Chart with sub-lords
curl -X POST https://api.vedika.io/v2/astrology/birth-chart \
-H "Authorization: Bearer your_api_key" \
-H "Content-Type: application/json" \
-d '{
"date": "1990-05-15",
"time": "10:30:00",
"latitude": 28.6139,
"longitude": 77.2090,
"timezone": "Asia/Kolkata",
"system": "kp"
}'
from vedika import VedikaClient
client = VedikaClient("your_api_key")
# KP chart with sub-lords
chart = client.chart.generate(
date="1990-05-15",
time="10:30:00",
lat=28.6139, lon=77.2090,
tz="Asia/Kolkata",
system="kp"
)
# Access KP-specific data
for cusp in chart.cusps:
print(f"Cusp {cusp.number}: {cusp.sign}")
print(f" Star Lord: {cusp.star_lord}")
print(f" Sub Lord: {cusp.sub_lord}")
const Vedika = require('vedika');
const client = new Vedika('your_api_key');
const chart = await client.chart.generate({
date: '1990-05-15',
time: '10:30:00',
lat: 28.6139, lon: 77.2090,
tz: 'Asia/Kolkata',
system: 'kp'
});
// KP sub-lord data
chart.cusps.forEach(cusp => {
console.log(`Cusp ${cusp.number}:`,
cusp.starLord, cusp.subLord);
});
{
"system": "kp",
"ayanamsa": "krishnamurti",
"cusps": [
{
"number": 1,
"sign": "Leo",
"degree": 12.45,
"star_lord": "Sun",
"sub_lord": "Venus",
"sub_sub_lord": "Saturn"
}
],
"planets": [
{
"name": "Moon",
"sign": "Virgo",
"star_lord": "Sun",
"sub_lord": "Mars",
"significators": [2, 6, 10]
}
],
"ruling_planets": {
"day_lord": "Wednesday - Mercury",
"moon_sign_lord": "Mercury",
"moon_star_lord": "Sun",
"lagna_sign_lord": "Sun"
}
}
All 140+ endpoints included in every plan (Vedic + Western + KP)
The only API with dedicated Krishnamurti Paddhati support. Plans from $12/month.