Self-hostable Django REST Framework API providing Quran text alongside multiple tafsir sources in Arabic, English, and other languages. Includes search across tafsir content.
const res = await fetch(
"https://github.com/Quran-Tafseer/tafseer_api"
);
const data = await res.json();
console.log(data);import requests
res = requests.get(
"https://github.com/Quran-Tafseer/tafseer_api"
)
data = res.json()
print(data)curl -sL "https://github.com/Quran-Tafseer/tafseer_api"