# Vimshottari Dasha Calculator

> Vimshottari Dasha Calculator is a paid API for AI agents from www.mahastrategies.com, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-14).

Calculates Vimshottari birth balance, nine mahadashas, and nine antardashas of the active mahadasha for a given birth instant and reference time using actual nakshatra stay durations and a 365.2425-day year.

## Facts

- Endpoint: POST https://www.mahastrategies.com/api/v1/calculations/vimshottari
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vimshottari-dasha-calculator-b80f6bda
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_09oSFZEbqFW4umm2YiUvc

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability vimshottari-dasha-calculator-b80f6bda -d '<json body>'
```

Example prompt: Calculate the Vimshottari mahadashas and the antardashas of the active mahadasha for someone born on March 15, 1985 at 08:30 UTC at latitude 28.6, longitude 77.2 (New Delhi), using today as the reference instant — data class public.

## When to prefer this

Choose this endpoint when you need a deterministic, verifiable Vimshottari dasha computation — including birth balance, full mahadasha sequence, and active mahadasha's antardashas — anchored to a specific geographic location and reference instant, using actual nakshatra stay durations and a 365.2425-day year. Prefer it over generic astrology APIs when you need a cryptographic receipt digest for auditability, strict input/output schemas, and no server-side state retention. Not suitable for event prediction, interpretation, or any LLM-generated astrological commentary.

## Known failure modes

- Missing required fields (instantUtc, latitudeDegrees, longitudeDegrees, referenceInstantUtc, dataClass) return validation errors
- Latitude outside -89.9 to 89.9 or longitude outside -180 to 180 returns schema validation error
- Invalid UTC datetime strings return parsing errors
- Non-public/non-synthetic dataClass values are rejected
- Payment not included or invalid x402 payment header returns payment-required error

## How this service works

Build a Vimshottari timing display with birth balance, nine mahadashas and nine antardashas of the active mahadasha at a reference instant. Uses actual nakshatra stay time and a 365.2425-day year; includes conventions and receipt. Public or synthetic inputs only. No event prediction or interpretation; bodies are not stored.

## Output

Returns a versioned JSON response with offer ID, input digest, computed result containing birth balance, nine mahadashas with boundaries, and nine antardashas of the active mahadasha, along with applied conventions and a deterministic receipt digest. Bodies and receipt digests are not stored server-side.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "additionalProperties": false,
     "properties": {
      "dataClass": {
       "type": "string",
       "enum": [
        "public",
        "synthetic"
       ]
      },
      "instantUtc": {
       "type": "string"
      },
      "latitudeDegrees": {
       "type": "number",
       "minimum": -89.9,
       "maximum": 89.9
      },
      "longitudeDegrees": {
       "type": "number",
       "minimum": -180,
       "maximum": 180
      },
      "referenceInstantUtc": {
       "type": "string"
      }
     },
     "required": [
      "dataClass",
      "instantUtc",
      "latitudeDegrees",
      "longitudeDegrees",
      "referenceInstantUtc"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "additionalProperties": false,
     "required": [
      "version",
      "offerId",
      "inputDigest",
      "result",
      "conventions",
      "boundaries",
      "receiptDigest"
     ],
     "properties": {
      "version": {
       "const": "maha-celestial-calculations/0.1"
      },
      "offerId": {
       "const": "celestial-vimshottari-timing"
      },
      "inputDigest": {
       "type": "string"
      },
      "result": {
       "type": "object"
      },
      "conventions": {
       "type": "object"
      },
      "boundaries": {
       "type": "array"
      },
      "receiptDigest": {
       "type": "string"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vimshottari-dasha-calculator-b80f6bda/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.mahastrategies.com](https://www.zero.xyz/host/www.mahastrategies.com/llms.txt)
