Open-source Quran platform providing REST API access to Quran text in multiple translations, audio recitations, and downloadable datasets. Dedicated to making the Quran accessible to every developer.
const res = await fetch(
"https://globalquran.com"
);
const data = await res.json();
console.log(data);import requests
res = requests.get(
"https://globalquran.com"
)
data = res.json()
print(data)curl -sL "https://globalquran.com"