# Suverse Hijri-to-Gregorian Date Converter

> Suverse Hijri-to-Gregorian 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 an Islamic Hijri calendar date to its equivalent Gregorian calendar date, returning day, month, and weekday.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-cal-gregorian-from-hijri
- 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-to-gregorian-date-converter-814a4208
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ova0DkYtEFk840rJAyhjG

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-to-gregorian-date-converter-814a4208 -d '<json body>'
```

Example prompt: Can you convert the Hijri date 15 Ramadan 1446 to its Gregorian equivalent and tell me what day of the week it falls on?

## When to prefer this

Choose this endpoint when you need a simple, keyless conversion from Hijri (Islamic) calendar dates to Gregorian dates, especially in agentic workflows where no API key management is desired. It is ideal for scheduling, event planning, or display applications that need to bridge Islamic and civil calendars. It proxies AlAdhan without requiring registration or authentication.

## Known failure modes

- Invalid Hijri date values (e.g. month > 12 or day > 30) return an error
- Missing required body fields result in a 400-level response
- Hijri year out of supported range may return an error or unexpected result
- Network or upstream AlAdhan service unavailability returns a 5xx error

## How this service works

Convert an Islamic Hijri date to the Gregorian calendar with day, month and weekday. Keyless Aladhan. For agents converting Islamic dates to civil dates.

## Output

Returns the Gregorian calendar equivalent of the provided Hijri date, including the day of the month, month name or number, year, and the day of the week (weekday).

## 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-to-gregorian-date-converter-814a4208/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)
