Open-source REST API providing mosque data via RESTful endpoints: locations (lat/lng, address, contact), prayer times, iqamah times, capacity, events, and services. Crowdsourced iqamah data is its key differentiator from calculated prayer time APIs.
const res = await fetch(
"https://masjidiapp.com"
);
const data = await res.json();
console.log(data);import requests
res = requests.get(
"https://masjidiapp.com"
)
data = res.json()
print(data)curl -sL "https://masjidiapp.com"