Chapters
Access individual chapters (surahs) of the Quran in various languages.
List of Chapters
Arabic Only
Get the list of chapters in Arabic
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/index.jsonChapters with Translations
Get the list of chapters with translations in various languages
Bengali
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/bn/index.jsonChinese
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/zh/index.jsonEnglish
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/en/index.jsonSpanish
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/es/index.jsonFrench
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/fr/index.jsonIndonesian
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/id/index.jsonRussian
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/ru/index.jsonSwedish
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/sv/index.jsonTurkish
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/tr/index.jsonUrdu
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/ur/index.jsonSingle Chapter
Arabic Text & Transliteration
Get a single chapter with Arabic text and transliteration
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/{chapterNumber}.jsonWith Translation
Get a single chapter with translation
https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/{langCode}/{chapterNumber}.jsonExample Usage
Fetch Al-Fatihah with English translation
fetch('https://cdn.jsdelivr.net/npm/quran-cloud@1.0.0/dist/chapters/en/1.json')
.then(response => response.json())
.then(chapter => {
console.log(chapter.name); // "الفاتحة"
console.log(chapter.translation); // "The Opening"
chapter.verses.forEach(verse => {
console.log(verse.text); // Arabic text
console.log(verse.translation); // English translation
});
});