This endpoint returns today’s prayer schedule as a flat object keyed by prayer name. It is designed for quick consumption by notification workflows, display widgets, and reminder automations that need the five daily prayer times without additional detail. The response always reflects the current server date — no date parameter is accepted.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Muhammadbugaje/NAMETS_Website/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint path
| Path | Source module |
|---|---|
GET /api/prayer/today/ | api/urls.py → api/views.py |
X-N8N-Token header.
Query parameters
This endpoint accepts no query parameters.Response fields
Today’s date in
YYYY-MM-DD format, based on the server’s local date at the time of the request (e.g., "2024-06-15").Fajr prayer time in
HH:MM 24-hour format (e.g., "05:30").Dhuhr prayer time in
HH:MM 24-hour format (e.g., "12:45").Asr prayer time in
HH:MM 24-hour format (e.g., "16:00").Maghrib prayer time in
HH:MM 24-hour format (e.g., "18:15").Isha prayer time in
HH:MM 24-hour format (e.g., "19:45").Example
Example response
The
PrayerSchedule model (accessible through the admin at /communications/prayer-times/) stores both adhan and iqama times for every prayer — for example, fajr_adhan, fajr_iqama, dhuhr_adhan, dhuhr_iqama, and so on for all five prayers. The /api/prayer/today/ endpoint currently returns a simplified view with a single time per prayer. If your workflow requires separate adhan and iqama times, refer to the full PrayerSchedule model or request access to the extended endpoint.