Back to Docs

Personalized Muhurat Search

Personalized Muhurat Search

POST/api/v2/vedic/muhurat/personalized-search

Search public Vedic Muhurat windows, then apply natal Tara Bala, Chandra Bala, strict event-chart selection, and purpose-specific best-moment rules.

Authentication: send x-api-key. High-plan access is required for search_mode=next_no_compromise.

Full URL

https://api.freeastroapi.com/api/v2/vedic/muhurat/personalized-search
Safe retries with Idempotency-Key

Authenticated, billable astrology POST requests accept the optional header Idempotency-Key: <client-generated unique operation key>. Reuse the same key only when retrying the exact same method, path, query string, and JSON body after a timeout or network failure.

A completed replay returns the first response with Idempotency-Replayed: true, does not rerun the calculation, and does not consume extra quota. Keys are retained for about 24 hours.

Reusing a key with a changed request returns 409 idempotency_key_reused. A duplicate while the first request is still running returns 409 request_in_progress with Retry-After.

What It Returns

A personalized Muhurat payload with ranked windows, an exact best_moment when strict rules pass, raw and public score semantics, explanation text, rejected windows, avoid moments, and selection metadata.

Example Request

curl -X POST "https://api.freeastroapi.com/api/v2/vedic/muhurat/personalized-search" \
 -H "Content-Type: application/json" \
 -H "x-api-key: YOUR_API_KEY" \
 -d '{
  "purpose": "vehicle_purchase",
  "start_date": "2026-04-01",
  "end_date": "2026-04-30",
  "city": "New Delhi",
  "lat": 28.62137,
  "lng": 77.2148,
  "ayanamsha": "lahiri",
  "language": "en",
  "limit": 3,
  "subject": {
    "year": 1990,
    "month": 5,
    "day": 17,
    "hour": 9,
    "minute": 30,
    "city": "New Delhi",
    "lat": 28.62137,
    "lng": 77.2148,
    "ayanamsha": "lahiri"
  }
}'

Request Parameters

Provide either city or both lat and lng. Coordinates are recommended for stable production results.

Field
purpose
Type
string
Required
No
Description
Search purpose. Supported values: general_work, vehicle_purchase, property_purchase, griha_pravesh, namkaran, and mundan.
Field
start_date
Type
string
Required
Yes
Description
Inclusive local start date as YYYY-MM-DD.
Field
end_date
Type
string
Required
Yes
Description
Inclusive local end date as YYYY-MM-DD. Maximum 31 days.
Field
city
Type
string
Required
No
Description
Location name. Optional when lat/lng are provided.
Field
lat
Type
float
Required
No
Description
Latitude. Recommended for stable production results.
Field
lng
Type
float
Required
No
Description
Longitude. Recommended for stable production results.
Field
tz_str
Type
string
Required
No
Description
Optional timezone override such as Asia/Kolkata, Europe/London, AUTO, or LMT. Defaults to AUTO when omitted.
Field
ayanamsha
Type
string
Required
No
Description
Vedic ayanamsha. Default is lahiri.
Field
language
Type
string
Required
No
Description
Response language. Only en is currently supported.
Field
limit
Type
integer
Required
No
Description
Maximum number of best windows to return. Allowed range: 1-50. Default is 10.
Field
subject
Type
object
Required
Yes
Description
Birth data for the person receiving the personalized muhurat ranking.
Field
subject.year
Type
integer
Required
Yes
Description
Subject birth year.
Field
subject.month
Type
integer
Required
Yes
Description
Subject birth month (1-12).
Field
subject.day
Type
integer
Required
Yes
Description
Subject birth day.
Field
subject.hour
Type
integer
Required
Yes
Description
Subject birth hour (0-23).
Field
subject.minute
Type
integer
Required
Yes
Description
Subject birth minute (0-59).
Field
subject.city
Type
string
Required
No
Description
Subject birth city. Optional when subject lat/lng are provided.
Field
subject.lat
Type
float
Required
No
Description
Subject birth latitude. Recommended for production.
Field
subject.lng
Type
float
Required
No
Description
Subject birth longitude. Recommended for production.
Field
subject.tz_str
Type
string
Required
No
Description
Optional subject birth timezone override such as Asia/Kolkata, AUTO, or LMT. Defaults to AUTO when omitted.
Field
subject.ayanamsha
Type
string
Required
No
Description
Subject chart ayanamsha. Default is lahiri.
Field
strictness
Type
string
Required
No
Description
Strict selection level for strict purposes: ruthless, traditional, or practical. Default is traditional.
Field
search_mode
Type
string
Required
No
Description
Use range for normal search or next_no_compromise for high-plan Griha Pravesh no-compromise scanning.
Field
scan_months
Type
integer
Required
No
Description
Number of calendar months to scan for next_no_compromise. Allowed range: 1-3.
Field
child_context.is_first_child
Type
boolean
Required
No
Description
Optional Mundan-only flag. When true, first-child Jyeshtha restrictions are applied.

Response Shape

Field
purpose
Type
string
Required
n/a
Description
Normalized search purpose.
Field
range
Type
object
Required
n/a
Description
Start date, end date, and day count searched.
Field
best_windows
Type
array
Required
n/a
Description
Ranked windows with personalized best_moment objects attached for strict purposes.
Field
best_moment
Type
object
Required
n/a
Description
Primary personalized exact recommendation for strict purposes when one survives all rules.
Field
best_moment.raw_score
Type
integer
Required
n/a
Description
Uncapped internal factor score retained for audit.
Field
best_moment.score
Type
integer
Required
n/a
Description
Public score aligned with the quality label and any caveat penalties.
Field
best_moment.quality
Type
string
Required
n/a
Description
Strict quality label: weak, acceptable, strong, or excellent.
Field
best_moment.explanation
Type
object
Required
n/a
Description
User-facing explanation of why the moment passed, including score interpretation and risk controls.
Field
no_compromise_moment
Type
object
Required
n/a
Description
Best strict no-compromise moment when the purpose supports tiered strict selection.
Field
acceptable_moments
Type
array
Required
n/a
Description
Alternative selected moments that passed the requested strictness tier.
Field
avoid_moments
Type
array
Required
n/a
Description
Sampled moments kept for audit but not recommended.
Field
rejected_windows
Type
array
Required
n/a
Description
Public windows that failed strict personalized selection, with reason codes.
Field
selection_explanation
Type
object
Required
n/a
Description
Top-level decision summary for the strict selection result.
Field
metadata
Type
object
Required
n/a
Description
Endpoint version, ruleset, personalization basis, strictness, search mode, and selection status.

Real Request Example

This request searches Vehicle Purchase windows for New Delhi in April 2026 and selects the best personalized moment for the supplied birth chart.

{
  "purpose": "vehicle_purchase",
  "start_date": "2026-04-01",
  "end_date": "2026-04-30",
  "city": "New Delhi",
  "lat": 28.62137,
  "lng": 77.2148,
  "ayanamsha": "lahiri",
  "language": "en",
  "limit": 3,
  "subject": {
    "year": 1990,
    "month": 5,
    "day": 17,
    "hour": 9,
    "minute": 30,
    "city": "New Delhi",
    "lat": 28.62137,
    "lng": 77.2148,
    "ayanamsha": "lahiri"
  }
}

Real Response Example

This response was generated from the current V2 endpoint implementation for the example payload.

V2
{
  "acceptable_moments": [],
  "avoid_moments": [],
  "best_moment": {
    "criteria": {
      "electional": {
        "avoid_periods": [
          {
            "end": "2026-04-24T08:04:05.093430+05:30",
            "name": "Bhadra",
            "start": "2026-04-23T20:52:01.252603+05:30"
          },
          {
            "end": "2026-04-24T12:19:30.662342+05:30",
            "name": "Rahu Kaal",
            "start": "2026-04-24T10:41:19.059406+05:30"
          }
        ],
        "clean_segments": [
          {
            "duration_minutes": 157.23,
            "end": "2026-04-24T10:41:19.059406+05:30",
            "start": "2026-04-24T08:04:05.093430+05:30"
          },
          {
            "duration_minutes": 423.49,
            "end": "2026-04-24T19:23:00.234560+05:30",
            "start": "2026-04-24T12:19:30.662342+05:30"
          }
        ],
        "hard_rejections": [],
        "quality_adjusted_score": 100,
        "raw_score": 100,
        "score_breakdown": [
          {
            "delta": 55,
            "rule": "base_vehicle_purchase_election",
            "status": "base"
          },
          {
            "delta": 10,
            "detail": "Moment is in the cleaned part of the parent window.",
            "rule": "avoid_periods",
            "status": "clear"
          },
          {
            "delta": 10,
            "detail": "Virgo",
            "rule": "lagna_sign",
            "status": "favorable"
          },
          {
            "delta": 6,
            "detail": "Pisces",
            "rule": "lagna_lord_house",
            "status": "supportive"
          },
          {
            "delta": 10,
            "detail": "7 from natal Moon",
            "rule": "moon_from_natal",
            "status": "favorable"
          },
          {
            "delta": 12,
            "detail": "Kshema",
            "rule": "tara_bala",
            "status": "favorable"
          },
          {
            "delta": 6,
            "detail": "Jupiter",
            "rule": "fourth_lord_house",
            "status": "supportive"
          },
          {
            "delta": 12,
            "detail": "Taurus",
            "rule": "venus_condition",
            "status": "supportive"
          },
          {
            "delta": 5,
            "detail": "Kendra benefics: Jupiter, Mercury",
            "rule": "benefic_influence",
            "status": "supportive"
          },
          {
            "delta": 12,
            "detail": "Natal fourth house and Venus",
            "rule": "natal_vehicle_factors",
            "status": "supportive"
          }
        ],
        "strict_rules": {
          "allowed_lagna_signs": [
            {
              "name": "Gemini",
              "sign_id": 3
            },
            {
              "name": "Cancer",
              "sign_id": 4
            },
            {
              "name": "Leo",
              "sign_id": 5
            },
            {
              "name": "Virgo",
              "sign_id": 6
            },
            {
              "name": "Scorpio",
              "sign_id": 8
            },
            {
              "name": "Sagittarius",
              "sign_id": 9
            },
            {
              "name": "Pisces",
              "sign_id": 12
            }
          ],
          "bad_tara_bala": [
            "Naidhana",
            "Pratyak",
            "Vipat"
          ],
          "event_vehicle_factor_policy": "Reject when event fourth lord and event Venus are both in 6/8/12.",
          "moon_dusthana_houses": [
            6,
            8,
            12
          ],
          "quality_cap_policy": "Excellent requires favorable Tara Bala, favorable Chandra Bala, supportive Lagna lord, fourth lord, and Venus."
        }
      },
      "personalized": {
        "chandra_bala": {
          "moon_from_natal": 7,
          "score_delta": 15,
          "status": "favorable"
        },
        "natal_moon": {
          "nakshatra": "Dhanishta",
          "nakshatra_id": 23,
          "sign": "Capricorn",
          "sign_id": 10
        },
        "natal_vehicle_factors": {
          "fourth_house": {
            "lord": "Mercury",
            "lord_house": 11,
            "sign": "Virgo",
            "sign_id": 6,
            "status": "supportive"
          },
          "score_delta": 12,
          "venus": {
            "house": 10,
            "sign": "Pisces",
            "sign_id": 12,
            "status": "supportive"
          }
        },
        "tara_bala": {
          "cycle_index": 4,
          "score_delta": 15,
          "status": "favorable",
          "tara_index": 13,
          "value": "Kshema"
        }
      }
    },
    "datetime": "2026-04-24T15:49:30.662342+05:30",
    "event_chart_summary": {
      "eighth_house": {
        "occupants": [
          {
            "degree_in_sign": 10.0291,
            "house": 8,
            "is_retrograde": false,
            "name": "Sun",
            "sign": "Aries",
            "sign_id": 1
          }
        ]
      },
      "fourth_house": {
        "lord": "Jupiter",
        "lord_house": 10,
        "lord_sign": "Gemini",
        "lord_sign_id": 3,
        "occupants": [],
        "sign": "Sagittarius",
        "sign_id": 9,
        "status": "supportive"
      },
      "lagna": {
        "degree": 0.9772,
        "sign": "Virgo",
        "sign_id": 6
      },
      "lagna_lord": {
        "degree_in_sign": 20.111,
        "house": 7,
        "is_retrograde": false,
        "name": "Mercury",
        "sign": "Pisces",
        "sign_id": 12,
        "status": "supportive"
      },
      "moon": {
        "degree_in_sign": 14.1614,
        "house": 11,
        "is_retrograde": false,
        "nakshatra": "Pushya",
        "nakshatra_id": 8,
        "name": "Moon",
        "sign": "Cancer",
        "sign_id": 4
      },
      "venus": {
        "degree_in_sign": 6.0913,
        "house": 9,
        "is_retrograde": false,
        "name": "Venus",
        "sign": "Taurus",
        "sign_id": 2,
        "status": "supportive"
      }
    },
    "explanation": {
      "adjusted_score": 100,
      "caveats": [],
      "decision": "recommended",
      "event_chart_factors": [
        "Event Lagna is Virgo and its lord is supportive in house 7.",
        "Fourth house lord Jupiter is supportive in house 10.",
        "Venus is supportive in house 9 (Taurus)."
      ],
      "headline": "15:49:30 is an excellent personalized Vehicle Purchase moment.",
      "personalized_factors": [
        "Tara Bala is Kshema (favorable).",
        "Event Moon is 7 from the natal Moon (favorable).",
        "The natal chart supports this choice through fourth house, venus."
      ],
      "plain_language_summary": "This moment passed the public muhurat window first, then passed personalized checks for Tara Bala, Chandra Bala, event Lagna, Moon, and the main Vehicle Purchase factors.",
      "purpose": "Vehicle Purchase",
      "quality": "excellent",
      "quality_cap_reasons": [],
      "raw_score": 100,
      "risk_controls": [
        "The sampled moment is inside a clean segment after subtracting Rahu Kaal, Bhadra, and Panchak from the parent public window.",
        "Event Moon is not in a blocked 6/8/12 house from the event Lagna.",
        "The event eighth house has no blocking malefic pressure."
      ],
      "score": 100,
      "score_interpretation": {
        "adjusted_score": 100,
        "note": "Score and quality are aligned with no additional quality cap.",
        "quality": "excellent",
        "quality_cap_reasons": [],
        "raw_score": 100
      },
      "why_this_moment_passed": [
        "Tara Bala: Kshema.",
        "Venus: Taurus.",
        "Natal vehicle factors: Natal fourth house and Venus.",
        "Avoid-period clearance: Moment is in the cleaned part of the parent window.",
        "Lagna sign: Virgo.",
        "Chandra Bala: 7 from natal Moon."
      ]
    },
    "hard_rejections": [],
    "parent_window_end": "2026-04-24T19:23:00.234560+05:30",
    "parent_window_start": "2026-04-24T05:47:10.250598+05:30",
    "quality": "excellent",
    "raw_score": 100,
    "score": 100,
    "time": "15:49:30"
  },
  "best_windows": [
    {
      "best_moment": {
        "criteria": {
          "electional": {
            "avoid_periods": [
              {
                "end": "2026-04-24T08:04:05.093430+05:30",
                "name": "Bhadra",
                "start": "2026-04-23T20:52:01.252603+05:30"
              },
              {
                "end": "2026-04-24T12:19:30.662342+05:30",
                "name": "Rahu Kaal",
                "start": "2026-04-24T10:41:19.059406+05:30"
              }
            ],
            "clean_segments": [
              {
                "duration_minutes": 157.23,
                "end": "2026-04-24T10:41:19.059406+05:30",
                "start": "2026-04-24T08:04:05.093430+05:30"
              },
              {
                "duration_minutes": 423.49,
                "end": "2026-04-24T19:23:00.234560+05:30",
                "start": "2026-04-24T12:19:30.662342+05:30"
              }
            ],
            "hard_rejections": [],
            "quality_adjusted_score": 100,
            "raw_score": 100,
            "score_breakdown": [
              {
                "delta": 55,
                "rule": "base_vehicle_purchase_election",
                "status": "base"
              },
              {
                "delta": 10,
                "detail": "Moment is in the cleaned part of the parent window.",
                "rule": "avoid_periods",
                "status": "clear"
              },
              {
                "delta": 10,
                "detail": "Virgo",
                "rule": "lagna_sign",
                "status": "favorable"
              },
              {
                "delta": 6,
                "detail": "Pisces",
                "rule": "lagna_lord_house",
                "status": "supportive"
              },
              {
                "delta": 10,
                "detail": "7 from natal Moon",
                "rule": "moon_from_natal",
                "status": "favorable"
              },
              {
                "delta": 12,
                "detail": "Kshema",
                "rule": "tara_bala",
                "status": "favorable"
              },
              {
                "delta": 6,
                "detail": "Jupiter",
                "rule": "fourth_lord_house",
                "status": "supportive"
              },
              {
                "delta": 12,
                "detail": "Taurus",
                "rule": "venus_condition",
                "status": "supportive"
              },
              {
                "delta": 5,
                "detail": "Kendra benefics: Jupiter, Mercury",
                "rule": "benefic_influence",
                "status": "supportive"
              },
              {
                "delta": 12,
                "detail": "Natal fourth house and Venus",
                "rule": "natal_vehicle_factors",
                "status": "supportive"
              }
            ],
            "strict_rules": {
              "allowed_lagna_signs": [
                {
                  "name": "Gemini",
                  "sign_id": 3
                },
                {
                  "name": "Cancer",
                  "sign_id": 4
                },
                {
                  "name": "Leo",
                  "sign_id": 5
                },
                {
                  "name": "Virgo",
                  "sign_id": 6
                },
                {
                  "name": "Scorpio",
                  "sign_id": 8
                },
                {
                  "name": "Sagittarius",
                  "sign_id": 9
                },
                {
                  "name": "Pisces",
                  "sign_id": 12
                }
              ],
              "bad_tara_bala": [
                "Naidhana",
                "Pratyak",
                "Vipat"
              ],
              "event_vehicle_factor_policy": "Reject when event fourth lord and event Venus are both in 6/8/12.",
              "moon_dusthana_houses": [
                6,
                8,
                12
              ],
              "quality_cap_policy": "Excellent requires favorable Tara Bala, favorable Chandra Bala, supportive Lagna lord, fourth lord, and Venus."
            }
          },
          "personalized": {
            "chandra_bala": {
              "moon_from_natal": 7,
              "score_delta": 15,
              "status": "favorable"
            },
            "natal_moon": {
              "nakshatra": "Dhanishta",
              "nakshatra_id": 23,
              "sign": "Capricorn",
              "sign_id": 10
            },
            "natal_vehicle_factors": {
              "fourth_house": {
                "lord": "Mercury",
                "lord_house": 11,
                "sign": "Virgo",
                "sign_id": 6,
                "status": "supportive"
              },
              "score_delta": 12,
              "venus": {
                "house": 10,
                "sign": "Pisces",
                "sign_id": 12,
                "status": "supportive"
              }
            },
            "tara_bala": {
              "cycle_index": 4,
              "score_delta": 15,
              "status": "favorable",
              "tara_index": 13,
              "value": "Kshema"
            }
          }
        },
        "datetime": "2026-04-24T15:49:30.662342+05:30",
        "event_chart_summary": {
          "eighth_house": {
            "occupants": [
              {
                "degree_in_sign": 10.0291,
                "house": 8,
                "is_retrograde": false,
                "name": "Sun",
                "sign": "Aries",
                "sign_id": 1
              }
            ]
          },
          "fourth_house": {
            "lord": "Jupiter",
            "lord_house": 10,
            "lord_sign": "Gemini",
            "lord_sign_id": 3,
            "occupants": [],
            "sign": "Sagittarius",
            "sign_id": 9,
            "status": "supportive"
          },
          "lagna": {
            "degree": 0.9772,
            "sign": "Virgo",
            "sign_id": 6
          },
          "lagna_lord": {
            "degree_in_sign": 20.111,
            "house": 7,
            "is_retrograde": false,
            "name": "Mercury",
            "sign": "Pisces",
            "sign_id": 12,
            "status": "supportive"
          },
          "moon": {
            "degree_in_sign": 14.1614,
            "house": 11,
            "is_retrograde": false,
            "nakshatra": "Pushya",
            "nakshatra_id": 8,
            "name": "Moon",
            "sign": "Cancer",
            "sign_id": 4
          },
          "venus": {
            "degree_in_sign": 6.0913,
            "house": 9,
            "is_retrograde": false,
            "name": "Venus",
            "sign": "Taurus",
            "sign_id": 2,
            "status": "supportive"
          }
        },
        "explanation": {
          "adjusted_score": 100,
          "caveats": [],
          "decision": "recommended",
          "event_chart_factors": [
            "Event Lagna is Virgo and its lord is supportive in house 7.",
            "Fourth house lord Jupiter is supportive in house 10.",
            "Venus is supportive in house 9 (Taurus)."
          ],
          "headline": "15:49:30 is an excellent personalized Vehicle Purchase moment.",
          "personalized_factors": [
            "Tara Bala is Kshema (favorable).",
            "Event Moon is 7 from the natal Moon (favorable).",
            "The natal chart supports this choice through fourth house, venus."
          ],
          "plain_language_summary": "This moment passed the public muhurat window first, then passed personalized checks for Tara Bala, Chandra Bala, event Lagna, Moon, and the main Vehicle Purchase factors.",
          "purpose": "Vehicle Purchase",
          "quality": "excellent",
          "quality_cap_reasons": [],
          "raw_score": 100,
          "risk_controls": [
            "The sampled moment is inside a clean segment after subtracting Rahu Kaal, Bhadra, and Panchak from the parent public window.",
            "Event Moon is not in a blocked 6/8/12 house from the event Lagna.",
            "The event eighth house has no blocking malefic pressure."
          ],
          "score": 100,
          "score_interpretation": {
            "adjusted_score": 100,
            "note": "Score and quality are aligned with no additional quality cap.",
            "quality": "excellent",
            "quality_cap_reasons": [],
            "raw_score": 100
          },
          "why_this_moment_passed": [
            "Tara Bala: Kshema.",
            "Venus: Taurus.",
            "Natal vehicle factors: Natal fourth house and Venus.",
            "Avoid-period clearance: Moment is in the cleaned part of the parent window.",
            "Lagna sign: Virgo.",
            "Chandra Bala: 7 from natal Moon."
          ]
        },
        "hard_rejections": [],
        "parent_window_end": "2026-04-24T19:23:00.234560+05:30",
        "parent_window_start": "2026-04-24T05:47:10.250598+05:30",
        "quality": "excellent",
        "raw_score": 100,
        "score": 100,
        "time": "15:49:30"
      },
      "criteria": {
        "avoid_periods": [
          {
            "end": "2026-04-24T08:04:05.093430+05:30",
            "name": "Bhadra",
            "start": "2026-04-23T20:52:01.252603+05:30",
            "status": "warning_overlap"
          },
          {
            "end": "2026-04-24T12:19:30.662342+05:30",
            "name": "Rahu Kaal",
            "start": "2026-04-24T10:41:19.059406+05:30",
            "status": "warning_overlap"
          }
        ],
        "combined_scoring": {
          "combined_score": 70,
          "personal_score": 100,
          "personal_weight": 0.35,
          "public_score": 94,
          "public_weight": 0.65
        },
        "duration": {
          "minimum_minutes": 240,
          "status": "meets_minimum",
          "value_minutes": 815.83
        },
        "lagna": {
          "allowed_signs": [
            {
              "name": "Gemini",
              "sign_id": 3
            },
            {
              "name": "Cancer",
              "sign_id": 4
            },
            {
              "name": "Leo",
              "sign_id": 5
            },
            {
              "name": "Virgo",
              "sign_id": 6
            },
            {
              "name": "Scorpio",
              "sign_id": 8
            },
            {
              "name": "Sagittarius",
              "sign_id": 9
            },
            {
              "name": "Pisces",
              "sign_id": 12
            }
          ],
          "matched_signs": [
            {
              "name": "Gemini",
              "sample_time": "2026-04-24T09:00:00+05:30",
              "sign_id": 3
            },
            {
              "name": "Cancer",
              "sample_time": "2026-04-24T12:00:00+05:30",
              "sign_id": 4
            },
            {
              "name": "Leo",
              "sample_time": "2026-04-24T14:00:00+05:30",
              "sign_id": 5
            },
            {
              "name": "Virgo",
              "sample_time": "2026-04-24T16:00:00+05:30",
              "sign_id": 6
            }
          ],
          "status": "overlaps_favorable_lagna"
        },
        "lunar_month": {
          "status": "not_restricted",
          "value": "Vaisakha"
        },
        "nakshatra": {
          "status": "favorable",
          "value": "Pushya"
        },
        "personalized": {
          "avoid_period_policy": {
            "has_overlap": true,
            "overlaps": [
              "Bhadra",
              "Rahu Kaal"
            ],
            "score_delta": 26,
            "status": "penalized_warning_overlap"
          },
          "chandra_bala": {
            "moon_from_natal": 7,
            "score_delta": 15,
            "status": "favorable"
          },
          "event_moon": {
            "nakshatra": "Pushya",
            "nakshatra_id": 8,
            "sign": "Cancer",
            "sign_id": 4
          },
          "natal_moon": {
            "ascendant_sign": "Gemini",
            "ascendant_sign_id": 3,
            "moon_nakshatra": "Dhanishta",
            "moon_nakshatra_id": 23,
            "moon_sign": "Capricorn",
            "moon_sign_id": 10
          },
          "natal_vehicle_factors": {
            "fourth_house": {
              "lord": "Mercury",
              "lord_house": 11,
              "sign": "Virgo",
              "sign_id": 6,
              "status": "supportive"
            },
            "score_delta": 10,
            "venus": {
              "house": 10,
              "sign": "Pisces",
              "sign_id": 12,
              "status": "supportive"
            }
          },
          "tara_bala": {
            "cycle_index": 4,
            "score_delta": 15,
            "status": "favorable",
            "tara_index": 13,
            "value": "Kshema"
          }
        },
        "publication_window": {
          "max_start_hour": 25,
          "status": "within_calibrated_start_range"
        },
        "purpose": {
          "label": "Vehicle Purchase Muhurat",
          "status": "selected",
          "value": "vehicle_purchase"
        },
        "tithi": {
          "status": "favorable",
          "value": "Ashtami"
        },
        "weekday": {
          "status": "favorable",
          "value": "Friday"
        }
      },
      "date": "2026-04-24",
      "duration_minutes": 815.83,
      "end": "2026-04-24T19:23:00.234560+05:30",
      "end_time": "19:23:00",
      "personal_score": 100,
      "public_score": 94,
      "quality": "excellent",
      "reasons": [
        "Vehicle Purchase Muhurat",
        "Ashtami Tithi",
        "Pushya Nakshatra",
        "Vaisakha lunar month",
        "Auspicious Lagna"
      ],
      "score": 100,
      "source_periods": [
        "Vehicle Purchase Muhurat",
        "Ashtami Tithi",
        "Pushya Nakshatra",
        "Auspicious Lagna"
      ],
      "start": "2026-04-24T05:47:10.250598+05:30",
      "start_time": "05:47:10",
      "warnings": [
        "Overlaps Bhadra.",
        "Overlaps Rahu Kaal."
      ]
    },
    {
      "best_moment": {
        "criteria": {
          "electional": {
            "avoid_periods": [
              {
                "end": "2026-04-01T19:23:43.161303+05:30",
                "name": "Bhadra",
                "start": "2026-04-01T07:09:16.417423+05:30"
              }
            ],
            "clean_segments": [
              {
                "duration_minutes": 647.2,
                "end": "2026-04-02T06:10:55.359326+05:30",
                "start": "2026-04-01T19:23:43.161303+05:30"
              }
            ],
            "hard_rejections": [],
            "quality_adjusted_score": 89,
            "raw_score": 100,
            "score_breakdown": [
              {
                "delta": 55,
                "rule": "base_vehicle_purchase_election",
                "status": "base"
              },
              {
                "delta": 10,
                "detail": "Moment is in the cleaned part of the parent window.",
                "rule": "avoid_periods",
                "status": "clear"
              },
              {
                "delta": 10,
                "detail": "Sagittarius",
                "rule": "lagna_sign",
                "status": "favorable"
              },
              {
                "delta": 6,
                "detail": "Gemini",
                "rule": "lagna_lord_house",
                "status": "supportive"
              },
              {
                "delta": 5,
                "detail": "9 from natal Moon",
                "rule": "moon_from_natal",
                "status": "neutral"
              },
              {
                "delta": 12,
                "detail": "Param Mitra",
                "rule": "tara_bala",
                "status": "favorable"
              },
              {
                "delta": 6,
                "detail": "Jupiter",
                "rule": "fourth_lord_house",
                "status": "supportive"
              },
              {
                "delta": -5,
                "detail": "Malefic in fourth house",
                "rule": "fourth_house_occupants",
                "status": "malefic_pressure"
              },
              {
                "delta": 6,
                "detail": "Aries",
                "rule": "venus_condition",
                "status": "supportive"
              },
              {
                "delta": 5,
                "detail": "Kendra benefics: Jupiter",
                "rule": "benefic_influence",
                "status": "supportive"
              },
              {
                "delta": 12,
                "detail": "Natal fourth house and Venus",
                "rule": "natal_vehicle_factors",
                "status": "supportive"
              }
            ],
            "strict_rules": {
              "allowed_lagna_signs": [
                {
                  "name": "Gemini",
                  "sign_id": 3
                },
                {
                  "name": "Cancer",
                  "sign_id": 4
                },
                {
                  "name": "Leo",
                  "sign_id": 5
                },
                {
                  "name": "Virgo",
                  "sign_id": 6
                },
                {
                  "name": "Scorpio",
                  "sign_id": 8
                },
                {
                  "name": "Sagittarius",
                  "sign_id": 9
                },
                {
                  "name": "Pisces",
                  "sign_id": 12
                }
              ],
              "bad_tara_bala": [
                "Naidhana",
                "Pratyak",
                "Vipat"
              ],
              "event_vehicle_factor_policy": "Reject when event fourth lord and event Venus are both in 6/8/12.",
              "moon_dusthana_houses": [
                6,
                8,
                12
              ],
              "quality_cap_policy": "Excellent requires favorable Tara Bala, favorable Chandra Bala, supportive Lagna lord, fourth lord, and Venus."
            }
          },
          "personalized": {
            "chandra_bala": {
              "moon_from_natal": 9,
              "score_delta": 5,
              "status": "neutral"
            },
            "natal_moon": {
              "nakshatra": "Dhanishta",
              "nakshatra_id": 23,
              "sign": "Capricorn",
              "sign_id": 10
            },
            "natal_vehicle_factors": {
              "fourth_house": {
                "lord": "Mercury",
                "lord_house": 11,
                "sign": "Virgo",
                "sign_id": 6,
                "status": "supportive"
              },
              "score_delta": 12,
              "venus": {
                "house": 10,
                "sign": "Pisces",
                "sign_id": 12,
                "status": "supportive"
              }
            },
            "tara_bala": {
              "cycle_index": 9,
              "score_delta": 15,
              "status": "favorable",
              "tara_index": 18,
              "value": "Param Mitra"
            }
          }
        },
        "datetime": "2026-04-02T00:13:43.161303+05:30",
        "event_chart_summary": {
          "eighth_house": {
            "occupants": []
          },
          "fourth_house": {
            "lord": "Jupiter",
            "lord_house": 7,
            "lord_sign": "Gemini",
            "lord_sign_id": 3,
            "occupants": [
              {
                "degree_in_sign": 17.8204,
                "house": 4,
                "is_retrograde": false,
                "name": "Sun",
                "sign": "Pisces",
                "sign_id": 12
              },
              {
                "degree_in_sign": 11.4193,
                "house": 4,
                "is_retrograde": false,
                "name": "Saturn",
                "sign": "Pisces",
                "sign_id": 12
              }
            ],
            "sign": "Pisces",
            "sign_id": 12,
            "status": "supportive"
          },
          "lagna": {
            "degree": 0.8731,
            "sign": "Sagittarius",
            "sign_id": 9
          },
          "lagna_lord": {
            "degree_in_sign": 21.6071,
            "house": 7,
            "is_retrograde": false,
            "name": "Jupiter",
            "sign": "Gemini",
            "sign_id": 3,
            "status": "supportive"
          },
          "moon": {
            "degree_in_sign": 14.1957,
            "house": 10,
            "is_retrograde": false,
            "nakshatra": "Hasta",
            "nakshatra_id": 13,
            "name": "Moon",
            "sign": "Virgo",
            "sign_id": 6
          },
          "venus": {
            "degree_in_sign": 8.3764,
            "house": 5,
            "is_retrograde": false,
            "name": "Venus",
            "sign": "Aries",
            "sign_id": 1,
            "status": "supportive"
          }
        },
        "explanation": {
          "adjusted_score": 89,
          "caveats": [],
          "decision": "recommended",
          "event_chart_factors": [
            "Event Lagna is Sagittarius and its lord is supportive in house 7.",
            "Fourth house lord Jupiter is supportive in house 7.",
            "Venus is supportive in house 5 (Aries)."
          ],
          "headline": "24:13:43 is a strong personalized Vehicle Purchase moment.",
          "personalized_factors": [
            "Tara Bala is Param Mitra (favorable).",
            "Event Moon is 9 from the natal Moon (neutral).",
            "The natal chart supports this choice through fourth house, venus."
          ],
          "plain_language_summary": "This moment passed the public muhurat window first, then passed personalized checks for Tara Bala, Chandra Bala, event Lagna, Moon, and the main Vehicle Purchase factors.",
          "purpose": "Vehicle Purchase",
          "quality": "strong",
          "quality_cap_reasons": [
            "Quality capped because event Moon is 9 from natal Moon."
          ],
          "raw_score": 100,
          "risk_controls": [
            "The sampled moment is inside a clean segment after subtracting Rahu Kaal, Bhadra, and Panchak from the parent public window.",
            "Event Moon is not in a blocked 6/8/12 house from the event Lagna.",
            "The event eighth house has no blocking malefic pressure.",
            "Quality capped because event Moon is 9 from natal Moon."
          ],
          "score": 89,
          "score_interpretation": {
            "adjusted_score": 89,
            "note": "Raw factor score was 100; public score is capped at 89 to match strong quality.",
            "quality": "strong",
            "quality_cap_reasons": [
              "Quality capped because event Moon is 9 from natal Moon."
            ],
            "raw_score": 100
          },
          "why_this_moment_passed": [
            "Tara Bala: Param Mitra.",
            "Natal vehicle factors: Natal fourth house and Venus.",
            "Avoid-period clearance: Moment is in the cleaned part of the parent window.",
            "Lagna sign: Sagittarius.",
            "Lagna lord: Gemini.",
            "Fourth lord: Jupiter."
          ]
        },
        "hard_rejections": [],
        "parent_window_end": "2026-04-02T06:10:55.359326+05:30",
        "parent_window_start": "2026-04-01T16:18:08.351510+05:30",
        "quality": "strong",
        "raw_score": 100,
        "score": 89,
        "time": "24:13:43"
      },
      "criteria": {
        "avoid_periods": [
          {
            "end": "2026-04-01T19:23:43.161303+05:30",
            "name": "Bhadra",
            "start": "2026-04-01T07:09:16.417423+05:30",
            "status": "warning_overlap"
          }
        ],
        "combined_scoring": {
          "combined_score": 84,
          "personal_score": 100,
          "personal_weight": 0.35,
          "public_score": 94,
          "public_weight": 0.65
        },
        "duration": {
          "minimum_minutes": 240,
          "status": "meets_minimum",
          "value_minutes": 832.78
        },
        "lagna": {
          "allowed_signs": [
            {
              "name": "Gemini",
              "sign_id": 3
            },
            {
              "name": "Cancer",
              "sign_id": 4
            },
            {
              "name": "Leo",
              "sign_id": 5
            },
            {
              "name": "Virgo",
              "sign_id": 6
            },
            {
              "name": "Scorpio",
              "sign_id": 8
            },
            {
              "name": "Sagittarius",
              "sign_id": 9
            },
            {
              "name": "Pisces",
              "sign_id": 12
            }
          ],
          "matched_signs": [
            {
              "name": "Leo",
              "sample_time": "2026-04-01T16:18:08.351510+05:30",
              "sign_id": 5
            },
            {
              "name": "Virgo",
              "sample_time": "2026-04-01T18:00:00+05:30",
              "sign_id": 6
            },
            {
              "name": "Scorpio",
              "sample_time": "2026-04-01T22:00:00+05:30",
              "sign_id": 8
            },
            {
              "name": "Sagittarius",
              "sample_time": "2026-04-02T01:00:00+05:30",
              "sign_id": 9
            },
            {
              "name": "Pisces",
              "sample_time": "2026-04-02T06:00:00+05:30",
              "sign_id": 12
            }
          ],
          "status": "overlaps_favorable_lagna"
        },
        "lunar_month": {
          "status": "not_restricted",
          "value": "Chaitra"
        },
        "nakshatra": {
          "status": "favorable",
          "value": "Hasta"
        },
        "personalized": {
          "avoid_period_policy": {
            "has_overlap": true,
            "overlaps": [
              "Bhadra"
            ],
            "score_delta": 12,
            "status": "penalized_warning_overlap"
          },
          "chandra_bala": {
            "moon_from_natal": 9,
            "score_delta": 5,
            "status": "neutral"
          },
          "event_moon": {
            "nakshatra": "Hasta",
            "nakshatra_id": 13,
            "sign": "Virgo",
            "sign_id": 6
          },
          "natal_moon": {
            "ascendant_sign": "Gemini",
            "ascendant_sign_id": 3,
            "moon_nakshatra": "Dhanishta",
            "moon_nakshatra_id": 23,
            "moon_sign": "Capricorn",
            "moon_sign_id": 10
          },
          "natal_vehicle_factors": {
            "fourth_house": {
              "lord": "Mercury",
              "lord_house": 11,
              "sign": "Virgo",
              "sign_id": 6,
              "status": "supportive"
            },
            "score_delta": 10,
            "venus": {
              "house": 10,
              "sign": "Pisces",
              "sign_id": 12,
              "status": "supportive"
            }
          },
          "tara_bala": {
            "cycle_index": 9,
            "score_delta": 15,
            "status": "favorable",
            "tara_index": 18,
            "value": "Param Mitra"
          }
        },
        "publication_window": {
          "max_start_hour": 25,
          "status": "within_calibrated_start_range"
        },
        "purpose": {
          "label": "Vehicle Purchase Muhurat",
          "status": "selected",
          "value": "vehicle_purchase"
        },
        "tithi": {
          "status": "favorable",
          "value": "Poornima"
        },
        "weekday": {
          "status": "favorable",
          "value": "Wednesday"
        }
      },
      "date": "2026-04-01",
      "duration_minutes": 832.78,
      "end": "2026-04-02T06:10:55.359326+05:30",
      "end_time": "30:10:55",
      "personal_score": 100,
      "public_score": 94,
      "quality": "strong",
      "reasons": [
        "Vehicle Purchase Muhurat",
        "Poornima Tithi",
        "Hasta Nakshatra",
        "Chaitra lunar month",
        "Auspicious Lagna"
      ],
      "score": 89,
      "source_periods": [
        "Vehicle Purchase Muhurat",
        "Poornima Tithi",
        "Hasta Nakshatra",
        "Auspicious Lagna"
      ],
      "start": "2026-04-01T16:18:08.351510+05:30",
      "start_time": "16:18:08",
      "warnings": [
        "Overlaps Bhadra."
      ]
    },
    {
      "best_moment": {
        "criteria": {
          "electional": {
            "avoid_periods": [
              {
                "end": "2026-04-02T15:32:21.417644+05:30",
                "name": "Rahu Kaal",
                "start": "2026-04-02T13:58:39.574591+05:30"
              }
            ],
            "clean_segments": [
              {
                "duration_minutes": 468.05,
                "end": "2026-04-02T13:58:39.574591+05:30",
                "start": "2026-04-02T06:10:36.359326+05:30"
              },
              {
                "duration_minutes": 877.42,
                "end": "2026-04-03T06:09:46.767503+05:30",
                "start": "2026-04-02T15:32:21.417644+05:30"
              }
            ],
            "hard_rejections": [],
            "quality_adjusted_score": 89,
            "raw_score": 100,
            "score_breakdown": [
              {
                "delta": 55,
                "rule": "base_vehicle_purchase_election",
                "status": "base"
              },
              {
                "delta": 10,
                "detail": "Moment is in the cleaned part of the parent window.",
                "rule": "avoid_periods",
                "status": "clear"
              },
              {
                "delta": 10,
                "detail": "Gemini",
                "rule": "lagna_sign",
                "status": "favorable"
              },
              {
                "delta": 6,
                "detail": "Aquarius",
                "rule": "lagna_lord_house",
                "status": "supportive"
              },
              {
                "delta": 5,
                "detail": "9 from natal Moon",
                "rule": "moon_from_natal",
                "status": "neutral"
              },
              {
                "delta": 12,
                "detail": "Param Mitra",
                "rule": "tara_bala",
                "status": "favorable"
              },
              {
                "delta": 6,
                "detail": "Mercury",
                "rule": "fourth_lord_house",
                "status": "supportive"
              },
              {
                "delta": 5,
                "detail": "Benefic in fourth house",
                "rule": "fourth_house_occupants",
                "status": "benefic_support"
              },
              {
                "delta": 6,
                "detail": "Aries",
                "rule": "venus_condition",
                "status": "supportive"
              },
              {
                "delta": 5,
                "detail": "Kendra benefics: Jupiter",
                "rule": "benefic_influence",
                "status": "supportive"
              },
              {
                "delta": 12,
                "detail": "Natal fourth house and Venus",
                "rule": "natal_vehicle_factors",
                "status": "supportive"
              }
            ],
            "strict_rules": {
              "allowed_lagna_signs": [
                {
                  "name": "Gemini",
                  "sign_id": 3
                },
                {
                  "name": "Cancer",
                  "sign_id": 4
                },
                {
                  "name": "Leo",
                  "sign_id": 5
                },
                {
                  "name": "Virgo",
                  "sign_id": 6
                },
                {
                  "name": "Scorpio",
                  "sign_id": 8
                },
                {
                  "name": "Sagittarius",
                  "sign_id": 9
                },
                {
                  "name": "Pisces",
                  "sign_id": 12
                }
              ],
              "bad_tara_bala": [
                "Naidhana",
                "Pratyak",
                "Vipat"
              ],
              "event_vehicle_factor_policy": "Reject when event fourth lord and event Venus are both in 6/8/12.",
              "moon_dusthana_houses": [
                6,
                8,
                12
              ],
              "quality_cap_policy": "Excellent requires favorable Tara Bala, favorable Chandra Bala, supportive Lagna lord, fourth lord, and Venus."
            }
          },
          "personalized": {
            "chandra_bala": {
              "moon_from_natal": 9,
              "score_delta": 5,
              "status": "neutral"
            },
            "natal_moon": {
              "nakshatra": "Dhanishta",
              "nakshatra_id": 23,
              "sign": "Capricorn",
              "sign_id": 10
            },
            "natal_vehicle_factors": {
              "fourth_house": {
                "lord": "Mercury",
                "lord_house": 11,
                "sign": "Virgo",
                "sign_id": 6,
                "status": "supportive"
              },
              "score_delta": 12,
              "venus": {
                "house": 10,
                "sign": "Pisces",
                "sign_id": 12,
                "status": "supportive"
              }
            },
            "tara_bala": {
              "cycle_index": 9,
              "score_delta": 15,
              "status": "favorable",
              "tara_index": 18,
              "value": "Param Mitra"
            }
          }
        },
        "datetime": "2026-04-02T10:20:36.359326+05:30",
        "event_chart_summary": {
          "eighth_house": {
            "occupants": []
          },
          "fourth_house": {
            "lord": "Mercury",
            "lord_house": 9,
            "lord_sign": "Aquarius",
            "lord_sign_id": 11,
            "occupants": [
              {
                "degree_in_sign": 19.5139,
                "house": 4,
                "is_retrograde": false,
                "name": "Moon",
                "sign": "Virgo",
                "sign_id": 6
              }
            ],
            "sign": "Virgo",
            "sign_id": 6,
            "status": "supportive"
          },
          "lagna": {
            "degree": 0.2946,
            "sign": "Gemini",
            "sign_id": 3
          },
          "lagna_lord": {
            "degree_in_sign": 20.5259,
            "house": 9,
            "is_retrograde": false,
            "name": "Mercury",
            "sign": "Aquarius",
            "sign_id": 11,
            "status": "supportive"
          },
          "moon": {
            "degree_in_sign": 19.5139,
            "house": 4,
            "is_retrograde": false,
            "nakshatra": "Hasta",
            "nakshatra_id": 13,
            "name": "Moon",
            "sign": "Virgo",
            "sign_id": 6
          },
          "venus": {
            "degree_in_sign": 8.8951,
            "house": 11,
            "is_retrograde": false,
            "name": "Venus",
            "sign": "Aries",
            "sign_id": 1,
            "status": "supportive"
          }
        },
        "explanation": {
          "adjusted_score": 89,
          "caveats": [],
          "decision": "recommended",
          "event_chart_factors": [
            "Event Lagna is Gemini and its lord is supportive in house 9.",
            "Fourth house lord Mercury is supportive in house 9.",
            "Venus is supportive in house 11 (Aries)."
          ],
          "headline": "10:20:36 is a strong personalized Vehicle Purchase moment.",
          "personalized_factors": [
            "Tara Bala is Param Mitra (favorable).",
            "Event Moon is 9 from the natal Moon (neutral).",
            "The natal chart supports this choice through fourth house, venus."
          ],
          "plain_language_summary": "This moment passed the public muhurat window first, then passed personalized checks for Tara Bala, Chandra Bala, event Lagna, Moon, and the main Vehicle Purchase factors.",
          "purpose": "Vehicle Purchase",
          "quality": "strong",
          "quality_cap_reasons": [
            "Quality capped because event Moon is 9 from natal Moon."
          ],
          "raw_score": 100,
          "risk_controls": [
            "The sampled moment is inside a clean segment after subtracting Rahu Kaal, Bhadra, and Panchak from the parent public window.",
            "Event Moon is not in a blocked 6/8/12 house from the event Lagna.",
            "The event eighth house has no blocking malefic pressure.",
            "Quality capped because event Moon is 9 from natal Moon."
          ],
          "score": 89,
          "score_interpretation": {
            "adjusted_score": 89,
            "note": "Raw factor score was 100; public score is capped at 89 to match strong quality.",
            "quality": "strong",
            "quality_cap_reasons": [
              "Quality capped because event Moon is 9 from natal Moon."
            ],
            "raw_score": 100
          },
          "why_this_moment_passed": [
            "Tara Bala: Param Mitra.",
            "Natal vehicle factors: Natal fourth house and Venus.",
            "Avoid-period clearance: Moment is in the cleaned part of the parent window.",
            "Lagna sign: Gemini.",
            "Lagna lord: Aquarius.",
            "Fourth lord: Mercury."
          ]
        },
        "hard_rejections": [],
        "parent_window_end": "2026-04-03T06:09:46.767503+05:30",
        "parent_window_start": "2026-04-02T06:10:36.359326+05:30",
        "quality": "strong",
        "raw_score": 100,
        "score": 89,
        "time": "10:20:36"
      },
      "criteria": {
        "avoid_periods": [
          {
            "end": "2026-04-02T15:32:21.417644+05:30",
            "name": "Rahu Kaal",
            "start": "2026-04-02T13:58:39.574591+05:30",
            "status": "warning_overlap"
          }
        ],
        "combined_scoring": {
          "combined_score": 82,
          "personal_score": 100,
          "personal_weight": 0.35,
          "public_score": 94,
          "public_weight": 0.65
        },
        "duration": {
          "minimum_minutes": 240,
          "status": "meets_minimum",
          "value_minutes": 1439.17
        },
        "lagna": {
          "allowed_signs": [
            {
              "name": "Gemini",
              "sign_id": 3
            },
            {
              "name": "Cancer",
              "sign_id": 4
            },
            {
              "name": "Leo",
              "sign_id": 5
            },
            {
              "name": "Virgo",
              "sign_id": 6
            },
            {
              "name": "Scorpio",
              "sign_id": 8
            },
            {
              "name": "Sagittarius",
              "sign_id": 9
            },
            {
              "name": "Pisces",
              "sign_id": 12
            }
          ],
          "matched_signs": [
            {
              "name": "Pisces",
              "sample_time": "2026-04-02T06:10:36.359326+05:30",
              "sign_id": 12
            },
            {
              "name": "Gemini",
              "sample_time": "2026-04-02T11:00:00+05:30",
              "sign_id": 3
            },
            {
              "name": "Cancer",
              "sample_time": "2026-04-02T13:00:00+05:30",
              "sign_id": 4
            },
            {
              "name": "Leo",
              "sample_time": "2026-04-02T15:00:00+05:30",
              "sign_id": 5
            },
            {
              "name": "Virgo",
              "sample_time": "2026-04-02T18:00:00+05:30",
              "sign_id": 6
            },
            {
              "name": "Scorpio",
              "sample_time": "2026-04-02T22:00:00+05:30",
              "sign_id": 8
            },
            {
              "name": "Sagittarius",
              "sample_time": "2026-04-03T01:00:00+05:30",
              "sign_id": 9
            }
          ],
          "status": "overlaps_favorable_lagna"
        },
        "lunar_month": {
          "status": "not_restricted",
          "value": "Chaitra"
        },
        "nakshatra": {
          "status": "favorable",
          "value": "Hasta / Chitra"
        },
        "personalized": {
          "avoid_period_policy": {
            "has_overlap": true,
            "overlaps": [
              "Rahu Kaal"
            ],
            "score_delta": 14,
            "status": "penalized_warning_overlap"
          },
          "chandra_bala": {
            "moon_from_natal": 9,
            "score_delta": 5,
            "status": "neutral"
          },
          "event_moon": {
            "nakshatra": "Hasta",
            "nakshatra_id": 13,
            "sign": "Virgo",
            "sign_id": 6
          },
          "natal_moon": {
            "ascendant_sign": "Gemini",
            "ascendant_sign_id": 3,
            "moon_nakshatra": "Dhanishta",
            "moon_nakshatra_id": 23,
            "moon_sign": "Capricorn",
            "moon_sign_id": 10
          },
          "natal_vehicle_factors": {
            "fourth_house": {
              "lord": "Mercury",
              "lord_house": 11,
              "sign": "Virgo",
              "sign_id": 6,
              "status": "supportive"
            },
            "score_delta": 10,
            "venus": {
              "house": 10,
              "sign": "Pisces",
              "sign_id": 12,
              "status": "supportive"
            }
          },
          "tara_bala": {
            "cycle_index": 9,
            "score_delta": 15,
            "status": "favorable",
            "tara_index": 18,
            "value": "Param Mitra"
          }
        },
        "publication_window": {
          "max_start_hour": 25,
          "status": "within_calibrated_start_range"
        },
        "purpose": {
          "label": "Vehicle Purchase Muhurat",
          "status": "selected",
          "value": "vehicle_purchase"
        },
        "tithi": {
          "status": "favorable",
          "value": "Poornima / Pratipada"
        },
        "weekday": {
          "status": "favorable",
          "value": "Thursday"
        }
      },
      "date": "2026-04-02",
      "duration_minutes": 1439.17,
      "end": "2026-04-03T06:09:46.767503+05:30",
      "end_time": "30:09:46",
      "personal_score": 100,
      "public_score": 94,
      "quality": "strong",
      "reasons": [
        "Vehicle Purchase Muhurat",
        "Poornima / Pratipada Tithi",
        "Hasta / Chitra Nakshatra",
        "Chaitra lunar month",
        "Auspicious Lagna"
      ],
      "score": 89,
      "source_periods": [
        "Vehicle Purchase Muhurat",
        "Poornima / Pratipada Tithi",
        "Hasta / Chitra Nakshatra",
        "Auspicious Lagna"
      ],
      "start": "2026-04-02T06:10:36.359326+05:30",
      "start_time": "06:10:36",
      "warnings": [
        "Overlaps Rahu Kaal."
      ]
    }
  ],
  "metadata": {
    "ayanamsha": "lahiri",
    "calculation_basis": "strict_vehicle_purchase_electional_best_moment",
    "calculation_notes": [
      "Purpose-specific searches use calibrated tithi and nakshatra intersections for the requested activity.",
      "Vehicle Purchase also requires overlap with an auspicious Lagna sample.",
      "Adhik Maas is excluded for these ceremony searches.",
      "Rahu Kaal, Bhadra, and Panchak overlaps are returned as warnings to preserve AstroSage-style full windows.",
      "Vehicle Purchase omits short fragments below the calibrated publication-duration threshold.",
      "Personalized Vehicle Purchase search selects exact event moments using whole-sign event charts, Tara Bala, Chandra Bala, Lagna, fourth-house, Venus, Rahu Kaal, Bhadra, and Panchak checks."
    ],
    "endpoint_version": "v2",
    "personalization_basis": "tara_bala_chandra_bala_vehicle_fourth_house_venus",
    "public_candidate_count": 9,
    "ruleset_version": "freeastro_muhurat_search_v2",
    "sampling_interval_minutes": 5,
    "scan_months_requested": null,
    "scanned_months": null,
    "scanned_ranges": null,
    "search_mode": null,
    "strict_rejection_policy": true,
    "strict_selection_status": "strict_moment_selected",
    "strictness": null,
    "subject": {
      "ascendant_sign": "Gemini",
      "ascendant_sign_id": 3,
      "moon_nakshatra": "Dhanishta",
      "moon_nakshatra_id": 23,
      "moon_sign": "Capricorn",
      "moon_sign_id": 10
    },
    "timezone_used": "Asia/Kolkata"
  },
  "no_compromise_moment": null,
  "purpose": "vehicle_purchase",
  "range": {
    "day_count": 30,
    "end_date": "2026-04-30",
    "start_date": "2026-04-01"
  },
  "rejected_windows": [
    {
      "date": "2026-04-30",
      "end": "2026-05-01T05:41:10.650077+05:30",
      "reason_codes": [
        "only_avoid_period_overlap"
      ],
      "reasons": [
        {
          "code": "only_avoid_period_overlap",
          "message": "The candidate window is fully removed by Rahu Kaal, Bhadra, or Panchak."
        }
      ],
      "score": 82,
      "start": "2026-04-30T21:13:31.116334+05:30"
    },
    {
      "date": "2026-04-23",
      "end": "2026-04-24T05:47:29.250598+05:30",
      "reason_codes": [
        "only_avoid_period_overlap"
      ],
      "reasons": [
        {
          "code": "only_avoid_period_overlap",
          "message": "The candidate window is fully removed by Rahu Kaal, Bhadra, or Panchak."
        }
      ],
      "score": 74,
      "start": "2026-04-23T20:50:07.389247+05:30"
    },
    {
      "date": "2026-04-13",
      "end": "2026-04-14T01:09:57.150737+05:30",
      "reason_codes": [
        "only_avoid_period_overlap"
      ],
      "reasons": [
        {
          "code": "only_avoid_period_overlap",
          "message": "The candidate window is fully removed by Rahu Kaal, Bhadra, or Panchak."
        }
      ],
      "score": 70,
      "start": "2026-04-13T05:58:20.980012+05:30"
    }
  ],
  "selection_explanation": {
    "best_moment_quality": "excellent",
    "best_moment_score": 100,
    "best_moment_time": "15:49:30",
    "decision": "best_moment_selected",
    "headline": "Selected 15:49:30 for Vehicle Purchase.",
    "selection_status": "strict_moment_selected",
    "strictness": null,
    "summary": "A strict personalized moment survived the public-window, avoid-period, natal, and event-chart checks."
  }
}

FAQ

How is this different from public Muhurat search?

The endpoint first generates public candidate windows, then applies the subject birth chart. Strict purposes sample clean segments, cast event charts, reject disallowed moments, and return an exact best_moment when one passes the purpose rules.

Which purposes currently use strict best-moment selection?

Strict personalized selection is implemented for vehicle_purchase, property_purchase, griha_pravesh, namkaran, and mundan. Each rule pack uses purpose-specific emphasis, such as 4th house and Venus for vehicle, land stability factors for property, house-entry rules for Griha Pravesh, and child-samskara factors for Namkaran and Mundan.

Why can best_moment be null even when public windows exist?

A public window can fail personalized or electional rules after chart sampling. For strict purposes, the response keeps rejected_windows and selection_explanation so developers and astrologers can see whether the failure came from Tara Bala, Chandra Bala, Lagna, avoid-period overlap, malefic pressure, or purpose-specific blocks.

What does high-plan next_no_compromise do?

search_mode=next_no_compromise is a high-plan scan currently limited to Griha Pravesh. It searches up to scan_months, capped at three months, for a no-compromise moment instead of only ranking the supplied date range.

Should subject.tz_str be included?

Usually no when subject lat and lng are present. The API defaults to AUTO timezone resolution. Include subject.tz_str only for exact reproducibility, an intentional timezone override, or special historical handling such as LMT.

Related Docs