Quran Cloud API
Overview
Quran Cloud provides a RESTful API to fetch individual verses (Ayah), chapters (Surah), sections (Juz), or the complete Quran text with multiple audio recitations and translations.
Beginner Tip
Fetch a single verse with https://api.alquran.cloud/v1/ayah/1:1 to get Al-Fatiha verse 1 in Arabic. Append /en.asad to the URL to get an English translation in the same call.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Quran Cloud",
"description": "A RESTful Quran API to retrieve an Ayah, Surah, Juz or the entire Holy Quran",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
code HTTP-style status code; 200 means success. status Human-readable status, e.g. "OK". data Container object with the requested Surah or Ayah data. data.number Surah number (1–114). data.name Arabic name of the Surah. data.ayahs Array of verse objects each containing text, number, and audio URL. Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://alquran.cloud/api";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Bhagavad Gita telugu
⭐ Beginner's PickBhagavad Gita Telugu API delivers all Gita verses in Telugu and Odia languages with no authentication required.
Bible-api
⭐ Beginner's PickBible-api.com is a free, no-auth REST API that returns Bible verses and passages in multiple translations using a simple URL pattern.
British National Bibliography
The British National Bibliography API exposes Linked Data about books published in the UK and Ireland, including titles, authors, ISBNs, and subject classifications.
Crossref Metadata Search
⭐ Beginner's PickCrossref Metadata Search provides free REST access to bibliographic metadata for over 140 million scholarly articles, books, and conference papers indexed by DOI.
GurbaniNow
GurbaniNow provides programmatic access to fast and accurate gurbani restful api via REST API.