Quran-api API
Overview
This community-maintained Quran API hosts the full Quran text in 90+ languages and 400+ translations as static JSON files on GitHub CDN—no rate limits, no key needed.
Beginner Tip
Because it's static JSON, you can fetch individual chapter files like https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/eng-translation/chapters/1.json. Using jsDelivr CDN keeps it fast worldwide.
Available Data
Example Response
{
"translatedText": "Bonjour le monde",
"detectedSourceLanguage": "en",
"targetLanguage": "fr"
} Field Reference
chapter Array of verse objects for the requested chapter. chapter[].verse Verse number within the chapter. chapter[].translation Translated text of the verse in the requested language. Implementation Example
const url = "https://github.com/fawazahmed0/quran-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.