{"info":{"_postman_id":"ca1839e6-3892-4deb-8137-e5bada51650e","name":"Al-Quran Cloud API","description":"<html><head></head><body><h1 id=\"al-quran-cloud-api-documentation\">Al-Quran Cloud API Documentation</h1>\n<p>This document provides a comprehensive guide to the Al-Quran Cloud API (v1) endpoints.</p>\n<p><strong>Base URL:</strong> <code>https://api.alquran.cloud/v1/</code></p>\n<h2 id=\"📖-quran-text--verses\">📖 Quran Text &amp; Verses</h2>\n<p>These endpoints are for fetching specific parts of the Quran.</p>\n<h3 id=\"1-get-a-specific-ayah\">1. Get a Specific Ayah</h3>\n<p>Fetches a single Ayah by its reference (<code>surah_number:ayah_number</code>).</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/ayah/{reference}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.alquran.cloud/v1/ayah/2:255</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.alquran.cloud/v1/ayah/2:255'</code></p>\n</li>\n</ul>\n<h3 id=\"2-get-an-ayah-with-translations\">2. Get an Ayah with Translation(s)</h3>\n<p>Fetches an Ayah along with one or more translations. You can append a single edition or a comma-separated list of editions to the URL.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/ayah/{reference}/{edition}</code></p>\n</li>\n<li><p><strong>Example URL (Single):</strong> <code>https://api.alquran.cloud/v1/ayah/2:255/en.sahih</code></p>\n</li>\n<li><p><strong>cURL (Single):</strong> <code>curl --location 'https://api.alquran.cloud/v1/ayah/2:255/en.sahih'</code></p>\n</li>\n<li><p><strong>Example URL (Multiple):</strong> <code>https://api.alquran.cloud/v1/ayah/2:255/en.sahih,ar.alafasy</code></p>\n</li>\n<li><p><strong>cURL (Multiple):</strong> <code>curl --location 'https://api.alquran.cloud/v1/ayah/2:255/en.sahih,ar.alafasy'</code></p>\n</li>\n</ul>\n<h3 id=\"3-get-a-specific-surah\">3. Get a Specific Surah</h3>\n<p>Fetches an entire Surah.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/surah/{surah_number}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.alquran.cloud/v1/surah/18</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.alquran.cloud/v1/surah/18'</code></p>\n</li>\n</ul>\n<h3 id=\"4-get-a-surah-with-translation\">4. Get a Surah with Translation</h3>\n<p>Fetches a Surah along with a translation.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/surah/{surah_number}/{edition}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.alquran.cloud/v1/surah/18/en.pickthall</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.alquran.cloud/v1/surah/18/en.pickthall'</code></p>\n</li>\n</ul>\n<h3 id=\"5-get-a-specific-juz\">5. Get a Specific Juz</h3>\n<p>Fetches all Ayahs in a specific Juz.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/juz/{juz_number}/{edition}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.alquran.cloud/v1/juz/30/quran-uthmani</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.alquran.cloud/v1/juz/30/quran-uthmani'</code></p>\n</li>\n</ul>\n<h2 id=\"🔍-search\">🔍 Search</h2>\n<h3 id=\"1-search-for-a-keyword\">1. Search for a Keyword</h3>\n<p>Searches for a keyword within a specific Surah or across all Surahs. The edition must be a translation.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/search/{keyword}/{surah_or_all}/{edition}</code></p>\n</li>\n<li><p><strong>Example URL (Specific Surah):</strong> <code>https://api.alquran.cloud/v1/search/Joseph/12/en.sahih</code></p>\n</li>\n<li><p><strong>cURL (Specific Surah):</strong> <code>curl --location 'https://api.alquran.cloud/v1/search/Joseph/12/en.sahih'</code></p>\n</li>\n<li><p><strong>Example URL (All Surahs):</strong> <code>https://api.alquran.cloud/v1/search/mercy/all/en.sahih</code></p>\n</li>\n<li><p><strong>cURL (All Surahs):</strong> <code>curl --location 'https://api.alquran.cloud/v1/search/mercy/all/en.sahih'</code></p>\n</li>\n</ul>\n<h2 id=\"⚙️-metadata--editions\">⚙️ Metadata &amp; Editions</h2>\n<p>These endpoints provide information about the available Quran editions, translations, and structure.</p>\n<h3 id=\"1-get-all-editions\">1. Get All Editions</h3>\n<p>Fetches a list of all available Quran editions (text, translation, transliteration, tafsir).</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/edition</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.alquran.cloud/v1/edition</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.alquran.cloud/v1/edition'</code></p>\n</li>\n</ul>\n<h3 id=\"2-get-editions-by-type\">2. Get Editions by Type</h3>\n<p>Fetches editions filtered by a specific type. Possible types are: <code>translation</code>, <code>tafsir</code>, <code>transliteration</code>, and <code>quran</code>.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/edition/type/{type}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.alquran.cloud/v1/edition/type/translation</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.alquran.cloud/v1/edition/type/translation'</code></p>\n</li>\n</ul>\n<h3 id=\"3-get-editions-by-language\">3. Get Editions by Language</h3>\n<p>Fetches editions filtered by a specific language ISO code.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/edition/language/{language_iso_code}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.alquran.cloud/v1/edition/language/fr</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.alquran.cloud/v1/edition/language/fr'</code></p>\n</li>\n</ul>\n<h3 id=\"4-get-general-metadata\">4. Get General Metadata</h3>\n<p>Fetches metadata about all Surahs, Juz, and Hizbs in the Quran. This is useful for building navigation.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/meta</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.alquran.cloud/v1/meta</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.alquran.cloud/v1/meta'</code></p>\n</li>\n</ul>\n<h2 id=\"☁️-cdn-media\">☁️ CDN Media</h2>\n<p>These endpoints link directly to media files on the Content Delivery Network (CDN). They are useful for streaming audio or displaying images.</p>\n<h3 id=\"1-get-an-ayah-image\">1. Get an Ayah Image</h3>\n<p>Fetches a <code>.png</code> image of a specific Ayah.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>https://cdn.alquran.cloud/media/image/{surahNumber}/{ayahNumber}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://cdn.alquran.cloud/media/image/2/255</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://cdn.alquran.cloud/media/image/2/255'</code></p>\n</li>\n</ul>\n<h3 id=\"2-get-an-ayah-audio\">2. Get an Ayah Audio</h3>\n<p>Fetches an <code>.mp3</code> audio file of a specific Ayah by a chosen reciter.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>https://cdn.alquran.cloud/media/audio/ayah/{reciter_edition}/{ayah_reference}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://cdn.alquran.cloud/media/audio/ayah/ar.alafasy/255</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://cdn.alquran.cloud/media/audio/ayah/ar.alafasy/255'</code></p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Al-Quran Cloud API Documentation","slug":"al-quran-cloud-api-documentation"}],"owner":"9793048","collectionId":"ca1839e6-3892-4deb-8137-e5bada51650e","publishedId":"2sB3BEoqSE","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-08-11T20:27:38.000Z"},"item":[{"name":"Quran Text & Verses","item":[{"name":"Get a Specific Ayah","id":"55b47f0a-ceb6-499b-95d7-a0c71325086a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.alquran.cloud/v1/ayah/2:255","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.alquran.cloud/v1/ayah/2:255\">http://api.alquran.cloud/v1/ayah/2:255</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","ayah","2:255"],"host":["api","alquran","cloud"],"query":[],"variable":[]}},"response":[],"_postman_id":"55b47f0a-ceb6-499b-95d7-a0c71325086a"},{"name":"Get an Ayah with Translation","id":"2c33a8d8-8dbd-4193-bcd5-8a093f2ef105","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.alquran.cloud/v1/ayah/2:255/en.sahih","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.alquran.cloud/v1/ayah/2:255/en.sahih\">http://api.alquran.cloud/v1/ayah/2:255/en.sahih</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","ayah","2:255","en.sahih"],"host":["api","alquran","cloud"],"query":[],"variable":[]}},"response":[],"_postman_id":"2c33a8d8-8dbd-4193-bcd5-8a093f2ef105"},{"name":"Get a Specific Surah","id":"1dae73a5-b384-4ce6-9ea0-58060b411945","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.alquran.cloud/v1/surah/18","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.alquran.cloud/v1/surah/18\">http://api.alquran.cloud/v1/surah/18</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","surah","18"],"host":["api","alquran","cloud"],"query":[],"variable":[]}},"response":[],"_postman_id":"1dae73a5-b384-4ce6-9ea0-58060b411945"},{"name":"Get a Surah with Translation","id":"2873e8f5-c5e4-4b20-b931-b9cc2c60e29d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.alquran.cloud/v1/surah/18/en.pickthall","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.alquran.cloud/v1/surah/18/en.pickthall\">http://api.alquran.cloud/v1/surah/18/en.pickthall</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","surah","18","en.pickthall"],"host":["api","alquran","cloud"],"query":[],"variable":[]}},"response":[],"_postman_id":"2873e8f5-c5e4-4b20-b931-b9cc2c60e29d"},{"name":"Get a Specific Juz","id":"ec154ac3-33a7-4174-8ead-0c28ae7254d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.alquran.cloud/v1/juz/30/quran-uthmani","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.alquran.cloud/v1/juz/30/quran-uthmani\">http://api.alquran.cloud/v1/juz/30/quran-uthmani</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","juz","30","quran-uthmani"],"host":["api","alquran","cloud"],"query":[],"variable":[]}},"response":[],"_postman_id":"ec154ac3-33a7-4174-8ead-0c28ae7254d1"}],"id":"5639d8e9-9d5e-42b2-8a20-2780545213e4","_postman_id":"5639d8e9-9d5e-42b2-8a20-2780545213e4","description":""},{"name":"Search","item":[{"name":"Search for a Keyword","id":"9d550085-0dd0-449c-bd87-452a26734259","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.alquran.cloud/v1/search/Joseph/12/en.sahih","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.alquran.cloud/v1/search/Joseph/12/en.sahih\">http://api.alquran.cloud/v1/search/Joseph/12/en.sahih</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","search","Joseph","12","en.sahih"],"host":["api","alquran","cloud"],"query":[],"variable":[]}},"response":[],"_postman_id":"9d550085-0dd0-449c-bd87-452a26734259"}],"id":"1f2166a7-4ec7-4d6c-b8f0-b92f3ed70748","_postman_id":"1f2166a7-4ec7-4d6c-b8f0-b92f3ed70748","description":""},{"name":"Metadata & Editions","item":[{"name":"Get All Editions","id":"4ab72cd6-0b7a-424b-90d0-86f7616fcaf9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.alquran.cloud/v1/edition","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.alquran.cloud/v1/edition\">http://api.alquran.cloud/v1/edition</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","edition"],"host":["api","alquran","cloud"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ab72cd6-0b7a-424b-90d0-86f7616fcaf9"},{"name":"Get Editions by Type","id":"2cbcd163-12b4-4eaf-94b2-bb945407ff4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.alquran.cloud/v1/edition/type/translation","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.alquran.cloud/v1/edition/type/translation\">http://api.alquran.cloud/v1/edition/type/translation</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","edition","type","translation"],"host":["api","alquran","cloud"],"query":[],"variable":[]}},"response":[],"_postman_id":"2cbcd163-12b4-4eaf-94b2-bb945407ff4d"},{"name":"Get Editions by Language","id":"4be979ec-c634-4367-b7a2-b1197b0997a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.alquran.cloud/v1/edition/language/fr","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.alquran.cloud/v1/edition/language/fr\">http://api.alquran.cloud/v1/edition/language/fr</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","edition","language","fr"],"host":["api","alquran","cloud"],"query":[],"variable":[]}},"response":[],"_postman_id":"4be979ec-c634-4367-b7a2-b1197b0997a6"},{"name":"Get General Metadata","id":"9b0a487b-701e-41a2-bf9e-e127012953f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.alquran.cloud/v1/meta","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.alquran.cloud/v1/meta\">http://api.alquran.cloud/v1/meta</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","meta"],"host":["api","alquran","cloud"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b0a487b-701e-41a2-bf9e-e127012953f7"}],"id":"42ac537a-de06-4e2d-86b5-33627be718ef","_postman_id":"42ac537a-de06-4e2d-86b5-33627be718ef","description":""},{"name":"Audio CDN","item":[{"name":"Audio of a Specific Ayah","id":"6d6956d6-53c6-4de2-b6e1-f942bf6847e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://cdn.alquran.cloud/media/audio/ayah/ar.alafasy/1","description":"<p>Generated from cURL: curl --location '<a href=\"https://cdn.alquran.cloud/media/audio/ayah/ar.alafasy/1\">https://cdn.alquran.cloud/media/audio/ayah/ar.alafasy/1</a>'</p>\n","urlObject":{"protocol":"https","path":["media","audio","ayah","ar.alafasy","1"],"host":["cdn","alquran","cloud"],"query":[],"variable":[]}},"response":[],"_postman_id":"6d6956d6-53c6-4de2-b6e1-f942bf6847e1"},{"name":"Audio of an Entire Surah","id":"07f492a8-e5c6-4b6c-9cb6-91183bd5037d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://cdn.alquran.cloud/media/audio/surah/ar.alafasy/18","description":"<p>Generated from cURL: curl --location '<a href=\"https://cdn.alquran.cloud/media/audio/surah/ar.alafasy/18\">https://cdn.alquran.cloud/media/audio/surah/ar.alafasy/18</a>'</p>\n","urlObject":{"protocol":"https","path":["media","audio","surah","ar.alafasy","18"],"host":["cdn","alquran","cloud"],"query":[],"variable":[]}},"response":[],"_postman_id":"07f492a8-e5c6-4b6c-9cb6-91183bd5037d"}],"id":"04601d19-d75f-429d-9678-f069b1aed119","_postman_id":"04601d19-d75f-429d-9678-f069b1aed119","description":""},{"name":"Image CDN","item":[{"name":"Image of a Specific Ayah","id":"03b5cbac-f510-4522-97e2-aafffaecdce6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://cdn.alquran.cloud/media/image/:surahNumber/:ayahNumber","description":"<p>Generated from cURL: curl --location '<a href=\"https://cdn.alquran.cloud/media/image/255\">https://cdn.alquran.cloud/media/image/255</a>'</p>\n","urlObject":{"protocol":"https","path":["media","image",":surahNumber",":ayahNumber"],"host":["cdn","alquran","cloud"],"query":[],"variable":[{"type":"any","value":"2","key":"surahNumber"},{"type":"any","value":"255","key":"ayahNumber"}]}},"response":[],"_postman_id":"03b5cbac-f510-4522-97e2-aafffaecdce6"}],"id":"fba8f291-1537-4ce9-b287-fe6948f70695","_postman_id":"fba8f291-1537-4ce9-b287-fe6948f70695","description":""}],"event":[{"listen":"prerequest","script":{"id":"927a8ee2-05ed-4b08-ab4c-fe03e12d6c03","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"c78b9d79-bcc8-4888-9be9-cedb846f5aeb","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"BASE_URL","value":"http://api.alquran.cloud/v1/","type":"string"}]}