Digital Quran
  • Introduction
  • Standards & conventions
    • Quran
    • Naming convention
    • Translation files: description
    • Translation files: examples
    • Translation texts
    • Quranic Text Markup Language (QTML)
    • Code examples
  • Content & Releases
    • Quran text
    • Font (Kitab)
    • Meta data
    • Translations
    • Tafsirs
    • Word-by-word translations
  • FAQ
    • How can I contribute?
    • Why Quran Academy website has more data than Digital Quran?
    • What if I found a mistake or a typo in a translation?
    • Who is using this standard?
    • How can I use content?
  • API
    • Getting started
    • Authentication
    • Creating an application
    • Limits
    • Errors
    • Pagination
    • CORS
    • Public endpoints
      • Languages
      • Surahs
      • Ayahs
      • Words
      • Translations
  • Other
    • Contributors
Powered by GitBook
On this page
  • List words of a specific surah
  • URL
  • Parameters
  • Response

Was this helpful?

  1. API
  2. Public endpoints

Words

List words of a specific surah

URL

GET /words

Parameters

Name

Type

Description

Required

Default

surah_number

integer

The number of a surah.

Yes

None

include_arabic_text

boolean

Add text in arabic?

No

false

language

string

The code of a language.

No

None

start_ayah_number

integer

The number of the start ayah (if you want to get words of a range of ayahs).

No

None

end_ayah_number

integer

The number of the end ayah (if you want to get words of a range of ayahs).

No

None

Example:

{
    "surah_number": 1,
    "include_arabic_text": true,
    "language": "ru"
}

Response

[
    {
        "surah_number": 1,
        "number": 1,
        "words": [
            {
                "position": 1,
                "arabic_text": "بِسْمِ",
                "translation": "С именем"
            },
            {
                "position": 2,
                "arabic_text": "ٱللَّهِ",
                "translation": "Аллаха,"
            },
            {
                "position": 3,
                "arabic_text": "ٱلرَّحْمَٰنِ",
                "translation": "Милостивого,"
            },
            {
                "position": 4,
                "arabic_text": "ٱلرَّحِيمِ",
                "translation": "Милосердного!"
            }
        ]
    },
    {
        "surah_number": 1,
        "number": 2,
        "words": [
            {
                "position": 1,
                "arabic_text": "ٱلْحَمْدُ",
                "translation": "Хвала"
            },
            {
                "position": 2,
                "arabic_text": "لِلَّهِ",
                "translation": "Аллаху,"
            },
            {
                "position": 3,
                "arabic_text": "رَبِّ",
                "translation": "Господу"
            },
            {
                "position": 4,
                "arabic_text": "ٱلْعَٰلَمِينَ",
                "translation": "миров,"
            }
        ]
    }
]
PreviousAyahsNextTranslations

Last updated 5 years ago

Was this helpful?