High-precision Islamic prayer times (fajr, sunrise, dhuhr, asr, maghrib, isha) plus qibla
High-precision Islamic prayer times (fajr, sunrise, dhuhr, asr, maghrib, isha) plus qibla direction for any coordinates and date. Pure astronomical computation (adhan library), 11 calculation methods including Umm al-Qura, Dubai, Egyptian, MWL. Ideal for agents building Muslim-facing schedules, reminders, or travel plans.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
api.qist.info · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x21353452E547B306a6007d834C433a118638D3b3",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"date": "2026-08-03",
"lat": 25.2048,
"lng": 55.2708,
"method": "dubai",
"tz": "Asia/Dubai"
},
"type": "http"
},
"output": {
"example": {
"coordinates": {
"lat": 25.2048,
"lng": 55.2708
},
"date": "2026-08-03",
"madhab": "shafi",
"method": "dubai",
"qiblaDegreesFromNorth": 258.26,
"times": {
"asr": "15:53",
"dhuhr": "12:29",
"fajr": "04:22",
"isha": "20:35",
"maghrib": "19:05",
"sunrise": "05:47"
},
"timezone": "Asia/Dubai"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"date": {
"description": "Gregorian date YYYY-MM-DD (default: today)",
"type": "string"
},
"lat": {
"description": "Latitude, -90 to 90",
"type": "number"
},
"lng": {
"description": "Longitude, -180 to 180",
"type": "number"
},
"madhab": {
"description": "Asr madhab: shafi (default) or hanafi",
"type": "string"
},
"method": {
"description": "Calculation method: ummalqura (default), mwl, egyptian, karachi, dubai, qatar, kuwait, singapore, northamerica, turkey, moonsighting",
"type": "string"
},
"tz": {
"description": "IANA timezone for local HH:mm output, e.g. Asia/Riyadh. Omit for ISO 8601 UTC",
"type": "string"
}
},
"required": [
"lat",
"lng"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.qist.info/api/prayer-times" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.qist.info/api/prayer-times");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.qist.info/api/prayer-times")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2984.json, and this resource appears in /discovery/resources and /discovery/search.