# convrgent.ai Vedic Astrology (Jyotish) Chart

> convrgent.ai Vedic Astrology (Jyotish) Chart is a paid API for AI agents from convrgent.ai, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-15).

Generates a sidereal Vedic natal chart with Nakshatras, Vimshottari Dasha periods, planetary dignities, Yogas, and Vedic aspects using Lahiri/Krishnamurti/Raman ayanamsa systems

## Facts

- Endpoint: POST https://convrgent.ai/api/kyh/vedic
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/convrgent-ai-207b12eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wgsB-VdCdYjcX9w-8ATAU

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 convrgent-ai-207b12eb -d '<json body>'
```

Example prompt: Can you run a Vedic Jyotish chart for someone born on March 14, 1985 at 6:42 AM in Mumbai, India — I want the full sidereal analysis with Nakshatras, Vimshottari Dasha periods, Yogas, and planetary dignities using the Lahiri ayanamsa?

## When to prefer this

Choose this endpoint when the user specifically wants Vedic/Jyotish astrology (sidereal zodiac) rather than Western tropical astrology — particularly when they want Nakshatra analysis, Vimshottari Dasha periods, Yogas, or an Indian astrology framework. Prefer over Western astrology endpoints when Moon-centric personality analysis or Indian astrological tradition is requested.

## Known failure modes

- Missing or invalid birth date/time returns error
- Unrecognized birth location or geocoding failure
- Invalid ayanamsa selection outside supported options (Lahiri/Krishnamurti/Raman)
- Payment failure via x402 protocol returns 402 status
- Ambiguous or incomplete birth data returns partial chart or error

## How this service works

Vedic Astrology (Jyotish) — sidereal natal chart with Nakshatras, Vimshottari Dasha periods, planetary dignities, Yogas, Vedic aspects. Lahiri/Krishnamurti/Raman ayanamsa. Indian astrology system with Moon-centric personality analysis.

## Output

A comprehensive Vedic astrology profile including sidereal planetary positions, Nakshatra placements (lunar mansions), Vimshottari Dasha period timeline, planetary dignity assessments, identified Yogas (auspicious/inauspicious combinations), Vedic aspects between planets, and a Moon-centric personality interpretation using the Indian astrology system.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "required": [
      "birth_date",
      "birth_time",
      "location"
     ],
     "properties": {
      "ayanamsa": {
       "enum": [
        "lahiri",
        "krishnamurti",
        "raman"
       ],
       "type": "string"
      },
      "location": {
       "type": "string"
      },
      "birth_date": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
      },
      "birth_time": {
       "type": "string",
       "pattern": "^\\d{2}:\\d{2}$"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "lagna": {
   "sign": "Tula",
   "degree": 12.5
  },
  "yogas": [
   {
    "name": "Gaja Kesari",
    "type": "benefic"
   }
  ],
  "dashas": {
   "currentMahadasha": {
    "planet": "Saturn",
    "durationYears": 19
   }
  },
  "moonNakshatra": {
   "name": "Jyeshtha",
   "pada": 2,
   "rulingPlanet": "Mercury"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/convrgent-ai-207b12eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from convrgent.ai](https://www.zero.xyz/host/convrgent.ai/llms.txt)
