# Suverse Hebrew Date Converter

> Suverse Hebrew Date Converter is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts a Gregorian calendar date to its Hebrew calendar equivalent, returning the Hebrew year, month, day, Hebrew script, and the week's Torah portion (parashah)

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-cal-hebrew-date
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-hebrew-date-converter-327c3046
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9pFrHZMM-W0eb-36_D_NY

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 suverse-hebrew-date-converter-327c3046 -d '<json body>'
```

Example prompt: What's the Hebrew calendar date for July 14, 2025, including the Hebrew script and the Torah portion being read that week?

## When to prefer this

Choose this endpoint when you need a keyless, pay-per-use Hebrew date conversion without managing a Hebcal API key. Ideal for agents that occasionally need Jewish calendar data without a subscription, or when building workflows around Jewish observance, synagogue schedules, lifecycle events, or date localization for Hebrew-speaking users.

## Known failure modes

- Invalid or malformed Gregorian date returns an error
- Dates outside supported Hebrew calendar range may fail or return unexpected results
- Missing required body fields returns a validation error
- Payment failure (402) if x402 payment not included or insufficient
- Network timeout if upstream Hebcal-compatible service is unavailable

## How this service works

Convert a Gregorian date to the Hebrew calendar with Hebrew year, month, day, Hebrew script and the week's Torah portion (parashah). Keyless Hebcal. For agents handling Jewish dates.

## Output

Returns the Hebrew year (e.g. 5785), Hebrew month name, Hebrew day number, the date rendered in Hebrew script characters, and the name of the weekly Torah portion (parashah) associated with that Shabbat.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-hebrew-date-converter-327c3046/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
