Quran Finder API

Quran Finder API is a simple API to get the verses of the Quran.

Get a verse by Surah and Ayah

Get a verse by its Surah number and Ayah number in the specified language.

GET text/{lang}/{suraNum}/{ayaNum}/

Parameters

Response

The response is a plain text of the verse in the specified language. If the verse is not found (e.g. invalid Surah number or Ayah number, or language code not supported), the response will be an empty string, along with a 404 status code.

Example

GET /text/ar/1/1

Response

بسم الله الرحمن الرحيم

Try it now

Get a diacritized verse by Surah and Ayah

Get a diacritized verse by its Surah number and Ayah number in the specified language. Only Arabic is supported for diacritized verses.

GET text/{lang}/{suraNum}/{ayaNum}/diacritized/

Parameters

Same as the previous endpoint (GET text/{lang}/{suraNum}/{ayaNum}/).

Response

The response is a plain text of the diacritized verse in Arabic. If the verse is not found (e.g. invalid Surah number or Ayah number, or language code not supported), the response will be an empty string, along with a 404 status code.

Example

GET /text/ar/1/1/diacritized/

Response

بِسْمِ اللَّهِ الرَّحْمَٰنِ الرَّحِيمِ

Try it now