# Suverse Hijri Calendar Converter

> Suverse Hijri Calendar 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 Islamic Hijri equivalent, returning the day, month (in Arabic and English), year, and any associated Islamic holidays.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-cal-hijri-from-gregorian
- 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-hijri-calendar-converter-301a951b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OV0fgPA-rPxRviP4IRqzG

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-hijri-calendar-converter-301a951b -d '<json body>'
```

Example prompt: What is the Hijri calendar date for April 20, 2025? I need the day, month name in both Arabic and English, year, and any Islamic holidays on that day.

## When to prefer this

Choose this endpoint when you need a keyless, pay-per-call Hijri date conversion without managing an AlAdhan API key. It is ideal for agents handling Islamic calendar queries, scheduling around religious holidays, or displaying dual-calendar interfaces, especially in low-volume or sporadic use cases where a subscription API key is unnecessary.

## Known failure modes

- Invalid or malformed Gregorian date input returns an error
- Date out of supported range may return no result or an error
- Missing required body fields causes a 400-level error
- Network or upstream AlAdhan API outage causes failure
- Payment not processed (x402 flow not completed) returns 402

## How this service works

Convert a Gregorian date to the Islamic Hijri calendar with day, month (Arabic+English), year and Islamic holidays. Keyless Aladhan. For agents handling Islamic dates and calendars.

## Output

Returns the Hijri day number, Hijri month in both English and Arabic script, Hijri year, and a list of Islamic holidays (if any) that fall on the given Gregorian date.

## 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-hijri-calendar-converter-301a951b/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)
