# Suverse Monthly Islamic Prayer Times Calendar

> Suverse Monthly Islamic Prayer Times Calendar is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns a full month of daily Islamic prayer times (Fajr, Sunrise, Dhuhr, Asr, Maghrib, Isha) plus Hijri dates for a given year, month, latitude, and longitude using a configurable calculation method.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-cal-prayer-month
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-monthly-islamic-prayer-times-calendar-a3bb08c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XpzgtWJ9k86MyqWrq1iCP

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-monthly-islamic-prayer-times-calendar-a3bb08c0 -d '<json body>'
```

Example prompt: Can you pull the full monthly Islamic prayer timetable for Cairo, Egypt for March 2025 — I need all five daily prayers plus sunrise using the Egyptian General Authority of Survey calculation method?

## When to prefer this

Choose this endpoint when you need an entire month of Islamic prayer times in a single call rather than querying day by day. It is ideal for building prayer calendars, mosque bulletins, Ramadan planners, or any app requiring a full monthly schedule. Since it proxies Aladhan without requiring an API key, it removes the need for credential management. Prefer it over single-day lookup endpoints when building monthly views or batch scheduling features.

## Known failure modes

- Invalid or out-of-range latitude/longitude returns an error or empty dataset
- Unsupported calculation method identifier returns an error
- Invalid year or month values (e.g. month 13) return a validation error
- Network timeout or upstream Aladhan API unavailability causes 5xx responses
- Missing required body fields returns a 400-level bad request error

## How this service works

A full month of daily Islamic prayer times for given year/month and lat/lng with configurable method. Each day lists Fajr, Sunrise, Dhuhr, Asr, Maghrib, Isha plus Hijri date. Keyless Aladhan. For agents building monthly prayer calendars.

## Output

Returns an array of 28–31 daily entries for the requested month, each containing prayer times (Fajr, Sunrise, Dhuhr, Asr, Maghrib, Isha), the corresponding Hijri calendar date, and the Gregorian date. Times are typically in HH:MM 24-hour local format adjusted for the given coordinates and calculation method.

## 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-monthly-islamic-prayer-times-calendar-a3bb08c0/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)
