{"activeVersionTag":"latest","latestAvailableVersionTag":"latest","collection":{"info":{"_postman_id":"ca1839e6-3892-4deb-8137-e5bada51650e","name":"Al-Quran Cloud API","description":"# Al-Quran Cloud API Documentation\n\nThis document provides a comprehensive guide to the Al-Quran Cloud API (v1) endpoints.\n\n**Base URL:** `https://api.alquran.cloud/v1/`\n\n## 📖 Quran Text & Verses\n\nThese endpoints are for fetching specific parts of the Quran.\n\n### 1\\. Get a Specific Ayah\n\nFetches a single Ayah by its reference (`surah_number:ayah_number`).\n\n- **Method:** `GET`\n    \n- **Endpoint:** `/ayah/{reference}`\n    \n- **Example URL:** `https://api.alquran.cloud/v1/ayah/2:255`\n    \n- **cURL:** `curl --location 'https://api.alquran.cloud/v1/ayah/2:255'`\n    \n\n### 2\\. Get an Ayah with Translation(s)\n\nFetches an Ayah along with one or more translations. You can append a single edition or a comma-separated list of editions to the URL.\n\n- **Method:** `GET`\n    \n- **Endpoint:** `/ayah/{reference}/{edition}`\n    \n- **Example URL (Single):** `https://api.alquran.cloud/v1/ayah/2:255/en.sahih`\n    \n- **cURL (Single):** `curl --location 'https://api.alquran.cloud/v1/ayah/2:255/en.sahih'`\n    \n- **Example URL (Multiple):** `https://api.alquran.cloud/v1/ayah/2:255/en.sahih,ar.alafasy`\n    \n- **cURL (Multiple):** `curl --location 'https://api.alquran.cloud/v1/ayah/2:255/en.sahih,ar.alafasy'`\n    \n\n### 3\\. Get a Specific Surah\n\nFetches an entire Surah.\n\n- **Method:** `GET`\n    \n- **Endpoint:** `/surah/{surah_number}`\n    \n- **Example URL:** `https://api.alquran.cloud/v1/surah/18`\n    \n- **cURL:** `curl --location 'https://api.alquran.cloud/v1/surah/18'`\n    \n\n### 4\\. Get a Surah with Translation\n\nFetches a Surah along with a translation.\n\n- **Method:** `GET`\n    \n- **Endpoint:** `/surah/{surah_number}/{edition}`\n    \n- **Example URL:** `https://api.alquran.cloud/v1/surah/18/en.pickthall`\n    \n- **cURL:** `curl --location 'https://api.alquran.cloud/v1/surah/18/en.pickthall'`\n    \n\n### 5\\. Get a Specific Juz\n\nFetches all Ayahs in a specific Juz.\n\n- **Method:** `GET`\n    \n- **Endpoint:** `/juz/{juz_number}/{edition}`\n    \n- **Example URL:** `https://api.alquran.cloud/v1/juz/30/quran-uthmani`\n    \n- **cURL:** `curl --location 'https://api.alquran.cloud/v1/juz/30/quran-uthmani'`\n    \n\n## 🔍 Search\n\n### 1\\. Search for a Keyword\n\nSearches for a keyword within a specific Surah or across all Surahs. The edition must be a translation.\n\n- **Method:** `GET`\n    \n- **Endpoint:** `/search/{keyword}/{surah_or_all}/{edition}`\n    \n- **Example URL (Specific Surah):** `https://api.alquran.cloud/v1/search/Joseph/12/en.sahih`\n    \n- **cURL (Specific Surah):** `curl --location 'https://api.alquran.cloud/v1/search/Joseph/12/en.sahih'`\n    \n- **Example URL (All Surahs):** `https://api.alquran.cloud/v1/search/mercy/all/en.sahih`\n    \n- **cURL (All Surahs):** `curl --location 'https://api.alquran.cloud/v1/search/mercy/all/en.sahih'`\n    \n\n## ⚙️ Metadata & Editions\n\nThese endpoints provide information about the available Quran editions, translations, and structure.\n\n### 1\\. Get All Editions\n\nFetches a list of all available Quran editions (text, translation, transliteration, tafsir).\n\n- **Method:** `GET`\n    \n- **Endpoint:** `/edition`\n    \n- **Example URL:** `https://api.alquran.cloud/v1/edition`\n    \n- **cURL:** `curl --location 'https://api.alquran.cloud/v1/edition'`\n    \n\n### 2\\. Get Editions by Type\n\nFetches editions filtered by a specific type. Possible types are: `translation`, `tafsir`, `transliteration`, and `quran`.\n\n- **Method:** `GET`\n    \n- **Endpoint:** `/edition/type/{type}`\n    \n- **Example URL:** `https://api.alquran.cloud/v1/edition/type/translation`\n    \n- **cURL:** `curl --location 'https://api.alquran.cloud/v1/edition/type/translation'`\n    \n\n### 3\\. Get Editions by Language\n\nFetches editions filtered by a specific language ISO code.\n\n- **Method:** `GET`\n    \n- **Endpoint:** `/edition/language/{language_iso_code}`\n    \n- **Example URL:** `https://api.alquran.cloud/v1/edition/language/fr`\n    \n- **cURL:** `curl --location 'https://api.alquran.cloud/v1/edition/language/fr'`\n    \n\n### 4\\. Get General Metadata\n\nFetches metadata about all Surahs, Juz, and Hizbs in the Quran. This is useful for building navigation.\n\n- **Method:** `GET`\n    \n- **Endpoint:** `/meta`\n    \n- **Example URL:** `https://api.alquran.cloud/v1/meta`\n    \n- **cURL:** `curl --location 'https://api.alquran.cloud/v1/meta'`\n    \n\n## ☁️ CDN Media\n\nThese endpoints link directly to media files on the Content Delivery Network (CDN). They are useful for streaming audio or displaying images.\n\n### 1\\. Get an Ayah Image\n\nFetches a `.png` image of a specific Ayah.\n\n- **Method:** `GET`\n    \n- **Endpoint:** `https://cdn.alquran.cloud/media/image/{surahNumber}/{ayahNumber}`\n    \n- **Example URL:** `https://cdn.alquran.cloud/media/image/2/255`\n    \n- **cURL:** `curl --location 'https://cdn.alquran.cloud/media/image/2/255'`\n    \n\n### 2\\. Get an Ayah Audio\n\nFetches an `.mp3` audio file of a specific Ayah by a chosen reciter.\n\n- **Method:** `GET`\n    \n- **Endpoint:** `https://cdn.alquran.cloud/media/audio/ayah/{reciter_edition}/{ayah_reference}`\n    \n- **Example URL:** `https://cdn.alquran.cloud/media/audio/ayah/ar.alafasy/255`\n    \n- **cURL:** `curl --location 'https://cdn.alquran.cloud/media/audio/ayah/ar.alafasy/255'`","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","isPublicCollection":false,"owner":"9793048","team":2007835,"collectionId":"ca1839e6-3892-4deb-8137-e5bada51650e","publishedId":"2sB3BEoqSE","public":true,"publicUrl":"https://documenter-api.postman.tech/view/9793048/2sB3BEoqSE","privateUrl":"https://go.postman.co/documentation/9793048-ca1839e6-3892-4deb-8137-e5bada51650e","customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"documentationLayout":"classic-double-column","customisation":{"metaTags":[{"name":"description","value":"This document provides a comprehensive guide to the Al-Quran Cloud API (v1) endpoints."},{"name":"title","value":"Al-Quran Cloud API Postman Collection"}],"appearance":{"default":"dark","themes":[{"name":"dark","logo":null,"colors":{"top-bar":"212121","right-sidebar":"303030","highlight":"FF6C37"}},{"name":"light","logo":null,"colors":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"}}]}},"version":"8.10.1","publishDate":"2025-08-11T20:27:38.000Z","activeVersionTag":"latest","documentationTheme":"light","metaTags":{"title":"Al-Quran Cloud API Postman Collection","description":"This document provides a comprehensive guide to the Al-Quran Cloud API (v1) endpoints."},"logos":{"logoLight":null,"logoDark":null}},"statusCode":200},"environments":[],"user":{"authenticated":false,"permissions":{"publish":false}},"run":{"button":{"js":"https://run.pstmn.io/button.js","css":"https://run.pstmn.io/button.css"}},"web":"https://www.getpostman.com/","team":{"logo":"https://res.cloudinary.com/postman/image/upload/t_team_logo_pubdoc/v1/team/a7d1186b8c6cbb9c50920b4aab742ee8b720d2ad7138f7c4bfb3a0fb38244dd9","favicon":"https://res.cloudinary.com/postman/image/upload/v1631372601/team/gvffmiwlemgth8bj38ho.ico"},"isEnvFetchError":false,"languages":"[{\"key\":\"csharp\",\"label\":\"C#\",\"variant\":\"HttpClient\"},{\"key\":\"csharp\",\"label\":\"C#\",\"variant\":\"RestSharp\"},{\"key\":\"curl\",\"label\":\"cURL\",\"variant\":\"cURL\"},{\"key\":\"dart\",\"label\":\"Dart\",\"variant\":\"http\"},{\"key\":\"go\",\"label\":\"Go\",\"variant\":\"Native\"},{\"key\":\"http\",\"label\":\"HTTP\",\"variant\":\"HTTP\"},{\"key\":\"java\",\"label\":\"Java\",\"variant\":\"OkHttp\"},{\"key\":\"java\",\"label\":\"Java\",\"variant\":\"Unirest\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"Fetch\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"jQuery\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"XHR\"},{\"key\":\"c\",\"label\":\"C\",\"variant\":\"libcurl\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Axios\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Native\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Request\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Unirest\"},{\"key\":\"objective-c\",\"label\":\"Objective-C\",\"variant\":\"NSURLSession\"},{\"key\":\"ocaml\",\"label\":\"OCaml\",\"variant\":\"Cohttp\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"cURL\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"Guzzle\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"HTTP_Request2\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"pecl_http\"},{\"key\":\"powershell\",\"label\":\"PowerShell\",\"variant\":\"RestMethod\"},{\"key\":\"python\",\"label\":\"Python\",\"variant\":\"http.client\"},{\"key\":\"python\",\"label\":\"Python\",\"variant\":\"Requests\"},{\"key\":\"r\",\"label\":\"R\",\"variant\":\"httr\"},{\"key\":\"r\",\"label\":\"R\",\"variant\":\"RCurl\"},{\"key\":\"ruby\",\"label\":\"Ruby\",\"variant\":\"Net::HTTP\"},{\"key\":\"shell\",\"label\":\"Shell\",\"variant\":\"Httpie\"},{\"key\":\"shell\",\"label\":\"Shell\",\"variant\":\"wget\"},{\"key\":\"swift\",\"label\":\"Swift\",\"variant\":\"URLSession\"}]","languageSettings":[{"key":"csharp","label":"C#","variant":"HttpClient"},{"key":"csharp","label":"C#","variant":"RestSharp"},{"key":"curl","label":"cURL","variant":"cURL"},{"key":"dart","label":"Dart","variant":"http"},{"key":"go","label":"Go","variant":"Native"},{"key":"http","label":"HTTP","variant":"HTTP"},{"key":"java","label":"Java","variant":"OkHttp"},{"key":"java","label":"Java","variant":"Unirest"},{"key":"javascript","label":"JavaScript","variant":"Fetch"},{"key":"javascript","label":"JavaScript","variant":"jQuery"},{"key":"javascript","label":"JavaScript","variant":"XHR"},{"key":"c","label":"C","variant":"libcurl"},{"key":"nodejs","label":"NodeJs","variant":"Axios"},{"key":"nodejs","label":"NodeJs","variant":"Native"},{"key":"nodejs","label":"NodeJs","variant":"Request"},{"key":"nodejs","label":"NodeJs","variant":"Unirest"},{"key":"objective-c","label":"Objective-C","variant":"NSURLSession"},{"key":"ocaml","label":"OCaml","variant":"Cohttp"},{"key":"php","label":"PHP","variant":"cURL"},{"key":"php","label":"PHP","variant":"Guzzle"},{"key":"php","label":"PHP","variant":"HTTP_Request2"},{"key":"php","label":"PHP","variant":"pecl_http"},{"key":"powershell","label":"PowerShell","variant":"RestMethod"},{"key":"python","label":"Python","variant":"http.client"},{"key":"python","label":"Python","variant":"Requests"},{"key":"r","label":"R","variant":"httr"},{"key":"r","label":"R","variant":"RCurl"},{"key":"ruby","label":"Ruby","variant":"Net::HTTP"},{"key":"shell","label":"Shell","variant":"Httpie"},{"key":"shell","label":"Shell","variant":"wget"},{"key":"swift","label":"Swift","variant":"URLSession"}],"languageOptions":[{"label":"C# - HttpClient","value":"csharp - HttpClient - C#"},{"label":"C# - RestSharp","value":"csharp - RestSharp - C#"},{"label":"cURL - cURL","value":"curl - cURL - cURL"},{"label":"Dart - http","value":"dart - http - Dart"},{"label":"Go - Native","value":"go - Native - Go"},{"label":"HTTP - HTTP","value":"http - HTTP - HTTP"},{"label":"Java - OkHttp","value":"java - OkHttp - Java"},{"label":"Java - Unirest","value":"java - Unirest - Java"},{"label":"JavaScript - Fetch","value":"javascript - Fetch - JavaScript"},{"label":"JavaScript - jQuery","value":"javascript - jQuery - JavaScript"},{"label":"JavaScript - XHR","value":"javascript - XHR - JavaScript"},{"label":"C - libcurl","value":"c - libcurl - C"},{"label":"NodeJs - Axios","value":"nodejs - Axios - NodeJs"},{"label":"NodeJs - Native","value":"nodejs - Native - NodeJs"},{"label":"NodeJs - Request","value":"nodejs - Request - NodeJs"},{"label":"NodeJs - Unirest","value":"nodejs - Unirest - NodeJs"},{"label":"Objective-C - NSURLSession","value":"objective-c - NSURLSession - Objective-C"},{"label":"OCaml - Cohttp","value":"ocaml - Cohttp - OCaml"},{"label":"PHP - cURL","value":"php - cURL - PHP"},{"label":"PHP - Guzzle","value":"php - Guzzle - PHP"},{"label":"PHP - HTTP_Request2","value":"php - HTTP_Request2 - PHP"},{"label":"PHP - pecl_http","value":"php - pecl_http - PHP"},{"label":"PowerShell - RestMethod","value":"powershell - RestMethod - PowerShell"},{"label":"Python - http.client","value":"python - http.client - Python"},{"label":"Python - Requests","value":"python - Requests - Python"},{"label":"R - httr","value":"r - httr - R"},{"label":"R - RCurl","value":"r - RCurl - R"},{"label":"Ruby - Net::HTTP","value":"ruby - Net::HTTP - Ruby"},{"label":"Shell - Httpie","value":"shell - Httpie - Shell"},{"label":"Shell - wget","value":"shell - wget - Shell"},{"label":"Swift - URLSession","value":"swift - URLSession - Swift"}],"layoutOptions":[{"value":"classic-single-column","label":"Single Column"},{"value":"classic-double-column","label":"Double Column"}],"versionOptions":[],"environmentOptions":[{"value":"0","label":"No Environment"}],"canonicalUrl":"https://documenter.gw.postman.com/view/metadata/2sB3BEoqSE"}