Matchmaking (Milan)
GET
1 credit

/v1/milan/dasha-sync

Dasha synchronization score.

What this tells you

Two people starting a life together ideally have supportive dashas running concurrently — at least in the first few years. This endpoint analyzes dasha lord friendships and transitions to gauge the match beyond static chart compatibility.

Request

All requests require an Authorization header with your dv_live_* API key.

example request
curl "https://api.divyastroapi.com/v1/milan/dasha-sync?date=2026-04-19&time=06%3A30&tz=%2B05%3A30&lat=28.61&lon=77.21" \
  -H "Authorization: Bearer dv_live_0123456789abcdef0123456789abcdef"

Response (200 OK)

Successful requests return a JSON body. Field names are stable across versions.

200 response
{
  "marriage_date": "2027-02-15",
  "boy_current_md": { "lord": "Jupiter", "remaining_years": 3.2 },
  "girl_current_md": { "lord": "Venus",   "remaining_years": 8.5 },
  "mds_are_friends": true,
  "antar_dasha_sync_score": 7,
  "max": 10,
  "explanation": "Boy enters Saturn MD 3 years into marriage. Venus-Saturn friendship supports financial stability in that period."
}

Field reference

Every field in the response, with its type, a real example, and what it means.

FieldTypeMeaning
marriage_datestring
Proposed marriage date.
example: "2027-02-15"
boy_current_md.lordstring
Boy's Mahadasha at marriage.
example: "Jupiter"
mds_are_friendsboolean
Whether the two current MD lords are mutual friends astrologically.
example: true
antar_dasha_sync_scoreinteger (0–10)
Composite score for how well the first ~5 years of dasha transitions align.
example: 7
explanationstring
Plain-language interpretation.
example:

Usage tips

How to use it

  • Pair with best-time muhurta
    When picking a wedding date, run this endpoint for each candidate date to find the dasha-optimal one.

Errors

Every error follows the same envelope. Use the error.code field (not the message) for conditional logic in your integration.

401 Unauthorized

{
  "error": {
    "code": "unauthorized",
    "message": "missing or invalid API key",
    "request_id": "req_01hqy7k8c3e7m1n"
  }
}

402 Payment Required

{
  "error": {
    "code": "trial_exhausted",
    "message": "your free trial credits are exhausted — pick a plan to continue",
    "top_up_url": "https://divyastroapi.com/pricing",
    "request_id": "req_01hqy7k8c3e7m1n"
  }
}

429 Too Many Requests

{
  "error": {
    "code": "rate_limited",
    "message": "rate limit exceeded; retry after 12 seconds",
    "request_id": "req_01hqy7k8c3e7m1n"
  }
}

Try it

Get a dv_live_* key from your dashboard and paste into the cURL snippet above. New accounts get 500 free credits. Sign up.