# Kshana Panchang Summary API

> Kshana Panchang Summary API is a paid API for AI agents from dev.api.kshana.thirdorigin.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns Hindu almanac (Panchang) summary data for a given date, location, and timezone, including Tithi, Nakshatra, Yoga, Karana, and other Vedic calendar elements

## Facts

- Endpoint: POST https://dev.api.kshana.thirdorigin.io/api/panchang/summary
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kshana-panchang-summary-api-30d726d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QTb-IkL7EIl6OP_tOntJw

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 kshana-panchang-summary-api-30d726d3 -d '<json body>'
```

Example prompt: What's the Panchang summary for Mumbai on March 15, 2026? Use the Asia/Kolkata timezone and give me 3 consecutive days.

## When to prefer this

Choose this endpoint when you need structured Panchang (Hindu almanac) data for a specific date and geographic location, especially for applications involving Hindu religious observance, Vedic astrology, auspicious timing, or Indian cultural calendar features. It supports multi-day requests (up to 31 days) and both coordinate-based and city-shortcut-based location input.

## Known failure modes

- Missing required 'date' field returns a 400 validation error
- Invalid date format (not ISO YYYY-MM-DD) returns a parsing error
- Invalid IANA timezone string causes a timezone resolution failure
- Latitude/longitude out of valid geographic range may return an error
- 'days' value exceeding 31 is rejected by schema validation
- Unrecognized city shortcut in 'locations' field may return an error or be ignored
- Payment not fulfilled (x402) results in a 402 Payment Required response

## How this service works

Panchang (Hindu almanac) REST API

## Output

Returns a Panchang (Hindu almanac) summary containing Vedic calendar elements such as Tithi, Nakshatra, Yoga, and Karana for the requested date(s) and location, computed based on the provided latitude/longitude or city shortcut and IANA timezone.

## Example request

```json
{
 "tz": "Asia/Kolkata",
 "lat": 19.076,
 "lon": 72.8777,
 "date": "2026-03-15",
 "days": 3
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "date"
 ],
 "properties": {
  "tz": {
   "type": "string",
   "description": "IANA timezone, e.g. Asia/Kolkata"
  },
  "lat": {
   "type": "number",
   "description": "Latitude"
  },
  "lon": {
   "type": "number",
   "description": "Longitude"
  },
  "date": {
   "type": "string",
   "format": "date",
   "description": "ISO date, e.g. 2026-02-28"
  },
  "days": {
   "type": "integer",
   "default": 1,
   "maximum": 31,
   "minimum": 1,
   "description": "Consecutive days (1-31)"
  },
  "locations": {
   "type": "string",
   "description": "Comma-separated city shortcuts (antwerp, dubai, london, mumbai, newyork, paris)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kshana-panchang-summary-api-30d726d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dev.api.kshana.thirdorigin.io](https://www.zero.xyz/host/dev.api.kshana.thirdorigin.io/llms.txt)
