Quran JSON

API Reference

Complete Quran Response
Structure of the complete Quran JSON response
{
  "chapters": [
    {
      "id": 1,
      "name": "الفاتحة",
      "transliteration": "Al-Fatihah",
      "translation": "The Opening",
      "type": "meccan",
      "verses": [
        {
          "id": 1,
          "text": "بِسْمِ ٱللَّهِ ٱلرَّحْمَٰنِ ٱلرَّحِيمِ",
          "transliteration": "Bismillaahir Rahmaanir Raheem",
          "translation": "In the name of Allah, the Entirely Merciful, the Especially Merciful"
        }
      ]
    }
  ]
}
Single Chapter Response
Structure of individual chapter JSON response
{
  "id": 1,
  "name": "الفاتحة",
  "transliteration": "Al-Fatihah",
  "translation": "The Opening",
  "type": "meccan",
  "verses": [
    {
      "id": 1,
      "text": "بِسْمِ ٱللَّهِ ٱلرَّحْمَٰنِ ٱلرَّحِيمِ",
      "transliteration": "Bismillaahir Rahmaanir Raheem",
      "translation": "In the name of Allah, the Entirely Merciful, the Especially Merciful"
    }
  ]
}
Single Verse Response
Structure of individual verse JSON response with all translations
{
  "id": 1,
  "chapter_id": 1,
  "verse_number": 1,
  "text": "بِسْمِ ٱللَّهِ ٱلرَّحْمَٰنِ ٱلرَّحِيمِ",
  "transliteration": "Bismillaahir Rahmaanir Raheem",
  "translations": {
    "en": "In the name of Allah, the Entirely Merciful, the Especially Merciful",
    "id": "Dengan nama Allah Yang Maha Pengasih, Maha Penyayang",
    // ... other translations
  }
}