# Suverse Islamic Prayer Times by Coordinates

> Suverse Islamic Prayer Times by Coordinates 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 the six daily Islamic prayer times (Fajr, Sunrise, Dhuhr, Asr, Maghrib, Isha) for a specific date and geographic coordinate using a configurable calculation method, powered by Aladhan without requiring an API key.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-rel-prayer-times-coords
- 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-islamic-prayer-times-by-coordinates-6a077c58
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eRVuwl0SxumUnU7cB4K-v

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-islamic-prayer-times-by-coordinates-6a077c58 -d '<json body>'
```

Example prompt: What are the Islamic prayer times for tomorrow, January 20, at latitude 25.2048 longitude 55.2708 using the Muslim World League calculation method?

## When to prefer this

Choose this endpoint when you need precise, location-specific Islamic prayer times for any date without managing your own Aladhan API key. It is ideal for agents building salah reminders, mosque apps, travel assistants, or Ramadan planners where exact GPS coordinates and a configurable calculation method matter. Prefer it over generic calendar APIs that lack Islamic prayer time support, or over raw Aladhan when you want a proxied, pay-per-call model.

## Known failure modes

- Invalid or out-of-range latitude/longitude returns an error or empty times
- Unsupported or misspelled calculation method may fall back to a default or error
- Missing required body fields (date, lat, lng, method) causes a 400-level error
- Extreme polar latitudes may produce null or undefined prayer times
- Payment failure via x402 prevents access and returns a 402 response

## How this service works

Islamic prayer times for an exact date and lat/lng with configurable method. Returns Fajr, Sunrise, Dhuhr, Asr, Maghrib, Isha. Keyless Aladhan. For agents needing precise location-based salah schedules.

## Output

The endpoint returns the six canonical Islamic prayer times — Fajr, Sunrise, Dhuhr, Asr, Maghrib, and Isha — for the specified date and geographic coordinates, calculated using the chosen juristic method (e.g. Muslim World League, ISNA, Egyptian, Diyanet). Times are returned in local clock format.

## 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-islamic-prayer-times-by-coordinates-6a077c58/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)
