Revolutionizing Vedic Astrology software and API for developers at Just ₹11
Limited Time Diwali Offer!
80% OFF
On Your First Detailed Report
Vedic astrology redefined — Rashi, Dasha, and destiny.
Generate your foundational Kundali chart instantly. For deeper insight, receive a comprehensive analysis of your Mahadasha and Antardasha, prepared and meticulously reviewed by our team of expert astrologers.
What Makes MyAstroDasha Different?
Unlike other Astrology apps, we don't provide false and unreal predictions. Our human astrologers are- committed to providing brutally honest reports, so you have a better analysis for your future moves.
"Astrology does not predict your future, it helps you take right decisions at the right time."
The perfect synergy of ancient Vedic principles and the nuanced wisdom of seasoned astrologers.
Go beyond surface-level predictions with a detailed examination of your major and minor planetary periods.
We provide clear, empowering insights without sugar-coating, helping you navigate your path with confidence.
Astrology Software & APIs for Your Use-Cases
Beyond reports, MyAstroDasha provides production-ready Astrology APIs and white-label software modules on a subscription model. Embed our calculations, charts, and dasha analytics into your apps—websites, CRMs, marketplaces, or mobile apps—without reinventing the wheel.
- • Birth chart (D1), divisional charts (e.g., D9), planetary positions
- • Vimshottari dasha, antardasha timelines & interpretations
- • Matchmaking (Guna Milan) & remedial recommendations
- • PDF generation pipelines & webhook callbacks
- • REST JSON endpoints with API keys
- • Embeddable Widgets for charts
- • Webhooks for “report.ready” events
- • SDK snippets for JS & PHP (Laravel)
- • Starter: generous dev sandbox, low monthly quota
- • Growth: higher RPM, custom branding, PDF pipelines
- • Enterprise: dedicated SLAs, IP allowlist, priority support
Send birth details; receive charts, dashas, and computed insights:
POST /api/v1/kundali
Authorization: Bearer <YOUR_API_KEY>
Content-Type: application/json
{
"name": "Aarav",
"dob": "1996-05-12",
"tob": "14:35",
"latitude": 28.6139,
"longitude": 77.2090,
"timezone": 5.5,
"include": ["d1","d9","vimshottari","pdf"]
}
Response includes computed positions, SVG snippets (optional), and a processing token if PDF generation is requested.
We’ll notify your backend when PDFs or long-running analyses complete:
POST https://yourapp.com/webhooks/myastrodasha
X-MyAstroDasha-Signature: sha256=<HMAC_HEX>
{
"event": "report.ready",
"token": "rep_8b2f...",
"pdf_url": "https://cdn.myastrodasha.com/reports/rep_8b2f....pdf",
"meta": { "order_id": "12345" }
}
Verify signatures using your webhook secret (HMAC-SHA256) before processing.
Drop a lightweight widget to render North-Indian (diamond) charts:
<div id="mad-chart" data-token="rep_8b2f..."></div>
<script src="https://cdn.myastrodasha.com/sdk/chart-widget.min.js" defer></script>
<script>
window.addEventListener('mad:ready', () => {
MADChart.render('#mad-chart', { theme: 'vedic-dark' });
});
</script>
Call our API securely from your server:
<?php
// app/Services/MyAstroDashaClient.php
use Illuminate\\Support\\Facades\\Http;
class MyAstroDashaClient {
public static function generate(array $payload) {
return Http::withToken(config('services.myastrodasha.key'))
->acceptJson()
->post('https://api.myastrodasha.com/api/v1/kundali', $payload)
->json();
}
}
Store API keys in .env, not client-side. Use webhooks for PDFs and long jobs.
- • API keys, IP allowlisting, and HMAC-signed webhooks
- • Rate-limits, idempotency keys, and request replay protection
- • Option to self-host certain modules for data residency
- • Clear SLAs on higher tiers; prioritized support channels
Need a custom workflow or on-prem option? We’ll tailor a plan for your stack.