{"info":{"_postman_id":"6e7247de-f8fb-4d94-acb8-e2ecb33c8663","name":"Aladhan API","description":"<html><head></head><body><h1 id=\"aladhan-api-documentation\">Aladhan API Documentation</h1>\n<p>This document provides a comprehensive guide to the Aladhan API (v1) endpoints.</p>\n<p><strong>Base URL:</strong> <code>https://api.aladhan.com/v1/</code></p>\n<h2 id=\"🕌-prayer-times\">🕌 Prayer Times</h2>\n<p>These endpoints provide daily prayer timings.</p>\n<h3 id=\"1-timings-by-coordinates\">1. Timings by Coordinates</h3>\n<p>Gets prayer times for a specific date and latitude/longitude.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/timings/{date}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.aladhan.com/v1/timings/11-08-2025?latitude=51.508515&amp;longitude=-0.125487</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.aladhan.com/v1/timings/11-08-2025?latitude=51.508515&amp;longitude=-0.125487'</code></p>\n</li>\n</ul>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li><p><code>{date}</code> (Path, required): The date for the prayer times. Can be a timestamp or a <code>DD-MM-YYYY</code> string.</p>\n</li>\n<li><p><code>latitude</code> (Query, required): The latitude of the location.</p>\n</li>\n<li><p><code>longitude</code> (Query, required): The longitude of the location.</p>\n</li>\n<li><p><code>method</code> (Query, optional): A number representing the calculation method. See the \"Get Calculation Methods\" endpoint for a list.</p>\n</li>\n<li><p><code>school</code> (Query, optional): <code>0</code> for Shafi (default), <code>1</code> for Hanafi.</p>\n</li>\n<li><p><code>midnightMode</code> (Query, optional): <code>0</code> for Standard (Mid Sunset to Sunrise), <code>1</code> for Jafari (Mid Sunset to Fajr).</p>\n</li>\n<li><p><code>latitudeAdjustmentMethod</code> (Query, optional): <code>1</code> for Middle of the Night, <code>2</code> for One Seventh, <code>3</code> for Angle Based.</p>\n</li>\n<li><p><code>tune</code> (Query, optional): Comma-separated list of prayer time adjustments in minutes.</p>\n</li>\n</ul>\n<h3 id=\"2-timings-by-city\">2. Timings by City</h3>\n<p>Gets prayer times for a specific date by city and country.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/timingsByCity</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.aladhan.com/v1/timingsByCity?city=London&amp;country=United+Kingdom&amp;method=2</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.aladhan.com/v1/timingsByCity?city=London&amp;country=United Kingdom&amp;method=2'</code></p>\n</li>\n</ul>\n<h3 id=\"3-timings-by-address\">3. Timings by Address</h3>\n<p>Gets prayer times for a specific date using a geocoded address string.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/timingsByAddress</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.aladhan.com/v1/timingsByAddress?address=Regents+Park+Mosque,+London,+UK</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.aladhan.com/v1/timingsByAddress?address=Regents+Park+Mosque,+London,+UK'</code></p>\n</li>\n</ul>\n<h2 id=\"📅-calendar\">📅 Calendar</h2>\n<p>These endpoints provide prayer timings for a full month or year.</p>\n<h3 id=\"1-calendar-by-coordinates\">1. Calendar by Coordinates</h3>\n<p>Gets a calendar of prayer times for a specific month/year and latitude/longitude.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/calendar</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.aladhan.com/v1/calendar?latitude=51.508515&amp;longitude=-0.125487&amp;month=8&amp;year=2025</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.aladhan.com/v1/calendar?latitude=51.508515&amp;longitude=-0.125487&amp;month=8&amp;year=2025'</code></p>\n</li>\n</ul>\n<h3 id=\"2-calendar-by-city\">2. Calendar by City</h3>\n<p>Gets a calendar of prayer times for a specific month/year by city and country.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/calendarByCity</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.aladhan.com/v1/calendarByCity?city=Mecca&amp;country=Saudi+Arabia&amp;month=9&amp;year=1447&amp;hijri=true</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.aladhan.com/v1/calendarByCity?city=Mecca&amp;country=Saudi Arabia&amp;month=9&amp;year=1447&amp;hijri=true'</code></p>\n</li>\n</ul>\n<h3 id=\"3-calendar-by-address\">3. Calendar by Address</h3>\n<p>Gets a calendar of prayer times using a geocoded address string.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/calendarByAddress</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.aladhan.com/v1/calendarByAddress?address=Al-Masjid+an-Nabawi,+Medina,+Saudi+Arabia&amp;year=2025&amp;month=4</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.aladhan.com/v1/calendarByAddress?address=Al-Masjid+an-Nabawi,+Medina,+Saudi+Arabia&amp;year=2025&amp;month=4'</code></p>\n</li>\n</ul>\n<h2 id=\"🕋-qibla-direction\">🕋 Qibla Direction</h2>\n<h3 id=\"1-qibla-by-coordinates\">1. Qibla by Coordinates</h3>\n<p>Calculates the direction of the Qibla from a given latitude and longitude.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/qibla/{latitude}/{longitude}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.aladhan.com/v1/qibla/51.508515/-0.125487</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.aladhan.com/v1/qibla/51.508515/-0.125487'</code></p>\n</li>\n</ul>\n<h2 id=\"☪️-islamic-date--calendar\">☪️ Islamic Date &amp; Calendar</h2>\n<p>These endpoints help with Hijri date conversions and provide information about special Islamic days.</p>\n<h3 id=\"1-convert-gregorian-to-hijri\">1. Convert Gregorian to Hijri</h3>\n<p>Converts a Gregorian date to its corresponding Hijri date.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/gToH/{date}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.aladhan.com/v1/gToH/11-08-2025</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.aladhan.com/v1/gToH/11-08-2025'</code></p>\n</li>\n</ul>\n<h3 id=\"2-convert-hijri-to-gregorian\">2. Convert Hijri to Gregorian</h3>\n<p>Converts a Hijri date to its corresponding Gregorian date.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/hToG/{date}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.aladhan.com/v1/hToG/15-02-1447</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.aladhan.com/v1/hToG/15-02-1447'</code></p>\n</li>\n</ul>\n<h3 id=\"3-islamic-month-info\">3. Islamic Month Info</h3>\n<p>Provides information about a specific month in the Hijri calendar for a given year.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/hijriCalendar/{month}/{year}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.aladhan.com/v1/hijriCalendar/9/1447</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.aladhan.com/v1/hijriCalendar/9/1447'</code></p>\n</li>\n</ul>\n<h3 id=\"4-get-islamic-holidays\">4. Get Islamic Holidays</h3>\n<p>Provides a list of Islamic holidays for a given Hijri year.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/holidays/{year}</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.aladhan.com/v1/holidays/1447</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.aladhan.com/v1/holidays/1447'</code></p>\n</li>\n</ul>\n<h2 id=\"⚙️-helper--meta-endpoints\">⚙️ Helper &amp; Meta Endpoints</h2>\n<p>These endpoints provide supporting data for the API.</p>\n<h3 id=\"1-get-calculation-methods\">1. Get Calculation Methods</h3>\n<p>Returns a list of all available prayer time calculation methods and their details.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/methods</code></p>\n</li>\n<li><p><strong>Example URL:</strong> <code>https://api.aladhan.com/v1/methods</code></p>\n</li>\n<li><p><strong>cURL:</strong> <code>curl --location 'https://api.aladhan.com/v1/methods'</code></p>\n</li>\n</ul>\n<h3 id=\"2-get-asma-ul-husna-99-names-of-allah\">2. Get Asma-ul-Husna (99 Names of Allah)</h3>\n<p>Returns the 99 names of Allah. Can fetch all names or a specific name by its number.</p>\n<ul>\n<li><p><strong>Method:</strong> <code>GET</code></p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>/asmaAlHusna</code> or <code>/asmaAlHusna/{number}</code></p>\n</li>\n<li><p><strong>Example URL (All):</strong> <code>https://api.aladhan.com/v1/asmaAlHusna</code></p>\n</li>\n<li><p><strong>cURL (All):</strong> <code>curl --location 'https://api.aladhan.com/v1/asmaAlHusna'</code></p>\n</li>\n<li><p><strong>Example URL (Specific):</strong> <code>https://api.aladhan.com/v1/asmaAlHusna/99</code></p>\n</li>\n<li><p><strong>cURL (Specific):</strong> <code>curl --location 'https://api.aladhan.com/v1/asmaAlHusna/99'</code></p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Aladhan API Documentation","slug":"aladhan-api-documentation"}],"owner":"9793048","collectionId":"6e7247de-f8fb-4d94-acb8-e2ecb33c8663","publishedId":"2sB3BEoqSD","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-08-11T20:22:20.000Z"},"item":[{"name":"Prayer Times","item":[{"name":"Timings by City","id":"96eb9420-99a7-4fbb-a28f-1e054233169d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/timingsByCity?city=Berlin&country=Germany&method=13","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/timingsByCity?city=London&amp;country=United%20Kingdom&amp;method=2\">http://api.aladhan.com/v1/timingsByCity?city=London&amp;country=United%20Kingdom&amp;method=2</a>'</p>\n","urlObject":{"host":["http://api.aladhan.com/v1/timingsByCity"],"query":[{"key":"city","value":"Berlin"},{"key":"country","value":"Germany"},{"key":"method","value":"13"}],"variable":[]}},"response":[{"id":"3c8c7e99-f8c8-46fb-852d-e2e23ef3a789","name":"Timings by City","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://api.aladhan.com/v1/timingsByCity?city=Berlin&country=Germany&method=3","host":["http://api.aladhan.com/v1/timingsByCity"],"query":[{"key":"city","value":"Berlin"},{"key":"country","value":"Germany"},{"key":"method","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Remaining-Second","value":"22"},{"key":"X-RateLimit-Limit-Second","value":"24"},{"key":"RateLimit-Limit","value":"24"},{"key":"RateLimit-Remaining","value":"22"},{"key":"RateLimit-Reset","value":"1"},{"key":"X-Cache-Key","value":"d2d545feac2e23d731b09c9a982e7d104bf57be3b5563f3c104deedc7135d2ae"},{"key":"Access-Control-Allow-Headers","value":"Authorization, origin, if-none-match"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, PATCH, OPTIONS"},{"key":"Access-Control-Expose-Headers","value":"*"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"e9c8bd1aaba700f05cb16e1a3aa090c4"},{"key":"Cache-Control","value":"public,max-age=3600"},{"key":"age","value":"201"},{"key":"X-Powered-By","value":"Kipchak by Mamluk"},{"key":"Date","value":"Tue, 12 Aug 2025 09:40:31 GMT"},{"key":"Server","value":"Unit/1.34.2"},{"key":"X-Cache-Status","value":"Hit"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Content-Length","value":"1294"},{"key":"X-Kong-Upstream-Latency","value":"0"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"1.1 kong/3.9.0"},{"key":"X-Kong-Request-Id","value":"e2944a4f81dbe259511f225153f0376a"},{"key":"Server-Timing","value":"cfReqDur;dur=23.392"},{"key":"Cf-Team","value":"293f4347820000e523ecf1c400000001"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"status\": \"OK\",\n    \"data\": {\n        \"timings\": {\n            \"Fajr\": \"03:08\",\n            \"Sunrise\": \"05:44\",\n            \"Dhuhr\": \"13:11\",\n            \"Asr\": \"17:15\",\n            \"Sunset\": \"20:38\",\n            \"Maghrib\": \"20:38\",\n            \"Isha\": \"23:00\",\n            \"Imsak\": \"02:58\",\n            \"Midnight\": \"01:11\",\n            \"Firstthird\": \"23:40\",\n            \"Lastthird\": \"02:42\"\n        },\n        \"date\": {\n            \"readable\": \"12 Aug 2025\",\n            \"timestamp\": \"1754974800\",\n            \"hijri\": {\n                \"date\": \"18-02-1447\",\n                \"format\": \"DD-MM-YYYY\",\n                \"day\": \"18\",\n                \"weekday\": {\n                    \"en\": \"Al Thalaata\",\n                    \"ar\": \"الثلاثاء\"\n                },\n                \"month\": {\n                    \"number\": 2,\n                    \"en\": \"Ṣafar\",\n                    \"ar\": \"صَفَر\",\n                    \"days\": 29\n                },\n                \"year\": \"1447\",\n                \"designation\": {\n                    \"abbreviated\": \"AH\",\n                    \"expanded\": \"Anno Hegirae\"\n                },\n                \"holidays\": [],\n                \"adjustedHolidays\": [],\n                \"method\": \"HJCoSA\"\n            },\n            \"gregorian\": {\n                \"date\": \"12-08-2025\",\n                \"format\": \"DD-MM-YYYY\",\n                \"day\": \"12\",\n                \"weekday\": {\n                    \"en\": \"Tuesday\"\n                },\n                \"month\": {\n                    \"number\": 8,\n                    \"en\": \"August\"\n                },\n                \"year\": \"2025\",\n                \"designation\": {\n                    \"abbreviated\": \"AD\",\n                    \"expanded\": \"Anno Domini\"\n                },\n                \"lunarSighting\": false\n            }\n        },\n        \"meta\": {\n            \"latitude\": 8.8888888,\n            \"longitude\": 7.7777777,\n            \"timezone\": \"Europe/Berlin\",\n            \"method\": {\n                \"id\": 3,\n                \"name\": \"Muslim World League\",\n                \"params\": {\n                    \"Fajr\": 18,\n                    \"Isha\": 17\n                },\n                \"location\": {\n                    \"latitude\": 51.5194682,\n                    \"longitude\": -0.1360365\n                }\n            },\n            \"latitudeAdjustmentMethod\": \"ANGLE_BASED\",\n            \"midnightMode\": \"STANDARD\",\n            \"school\": \"STANDARD\",\n            \"offset\": {\n                \"Imsak\": 0,\n                \"Fajr\": 0,\n                \"Sunrise\": 0,\n                \"Dhuhr\": 0,\n                \"Asr\": 0,\n                \"Maghrib\": 0,\n                \"Sunset\": 0,\n                \"Isha\": 0,\n                \"Midnight\": 0\n            }\n        }\n    }\n}"}],"_postman_id":"96eb9420-99a7-4fbb-a28f-1e054233169d"},{"name":"Timings by Address","id":"c46a9931-7d3b-46ad-927e-e5ec4323972e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/timingsByAddress?address=Anemonenweg%2047%2C%2016348%20Wandlitz%2C%20Germany&method=12","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/timingsByAddress?address=Regents%20Park%20Mosque%2C%20London%2C%20UK\">http://api.aladhan.com/v1/timingsByAddress?address=Regents%20Park%20Mosque%2C%20London%2C%20UK</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","timingsByAddress"],"host":["api","aladhan","com"],"query":[{"key":"address","value":"Anemonenweg%2047%2C%2016348%20Wandlitz%2C%20Germany"},{"key":"method","value":"12"}],"variable":[]}},"response":[],"_postman_id":"c46a9931-7d3b-46ad-927e-e5ec4323972e"},{"name":"Timings by Coordinates","id":"32cf5b77-dce2-43b9-8e26-94415896f7ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/timings/03-03-2026?latitude=52.5173885&longitude=13.3951309&method=13","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/timings/11-08-2025?latitude=51.508515&amp;longitude=-0.125487&amp;method=2\">http://api.aladhan.com/v1/timings/11-08-2025?latitude=51.508515&amp;longitude=-0.125487&amp;method=2</a>'</p>\n","urlObject":{"path":["03-03-2026"],"host":["http://api.aladhan.com/v1/timings"],"query":[{"key":"latitude","value":"52.5173885"},{"key":"longitude","value":"13.3951309"},{"key":"method","value":"13"}],"variable":[]}},"response":[],"_postman_id":"32cf5b77-dce2-43b9-8e26-94415896f7ff"}],"id":"0c19aeb6-8206-4036-bfd3-47cef3498b5e","_postman_id":"0c19aeb6-8206-4036-bfd3-47cef3498b5e","description":""},{"name":"Calendar","item":[{"name":"Calendar by Coordinates","id":"e60b97b2-0ae3-4a6b-9e54-8f1fb1384275","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/calendar?latitude=51.508515&longitude=-0.125487&month=8&year=2025","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/calendar?latitude=51.508515&amp;longitude=-0.125487&amp;month=8&amp;year=2025\">http://api.aladhan.com/v1/calendar?latitude=51.508515&amp;longitude=-0.125487&amp;month=8&amp;year=2025</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","calendar"],"host":["api","aladhan","com"],"query":[{"key":"latitude","value":"51.508515"},{"key":"longitude","value":"-0.125487"},{"key":"month","value":"8"},{"key":"year","value":"2025"}],"variable":[]}},"response":[],"_postman_id":"e60b97b2-0ae3-4a6b-9e54-8f1fb1384275"},{"name":"Calendar by City","id":"2398dbc1-1b4f-439f-86de-6cb65ded7a40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/calendarByCity?city=Mecca&country=Saudi%20Arabia&month=9&year=1446&hijri=true","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/calendarByCity?city=Mecca&amp;country=Saudi%20Arabia&amp;month=9&amp;year=1446&amp;hijri=true\">http://api.aladhan.com/v1/calendarByCity?city=Mecca&amp;country=Saudi%20Arabia&amp;month=9&amp;year=1446&amp;hijri=true</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","calendarByCity"],"host":["api","aladhan","com"],"query":[{"key":"city","value":"Mecca"},{"key":"country","value":"Saudi%20Arabia"},{"key":"month","value":"9"},{"key":"year","value":"1446"},{"key":"hijri","value":"true"}],"variable":[]}},"response":[],"_postman_id":"2398dbc1-1b4f-439f-86de-6cb65ded7a40"},{"name":"Calendar by Address","id":"4b7a82e7-4637-4720-9595-7035b3e7e143","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/calendarByAddress?address=Al-Masjid%20an-Nabawi%2C%20Medina%2C%20Saudi%20Arabia&year=2025&month=4","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/calendarByAddress?address=Al-Masjid%20an-Nabawi%2C%20Medina%2C%20Saudi%20Arabia&amp;year=2025&amp;month=4\">http://api.aladhan.com/v1/calendarByAddress?address=Al-Masjid%20an-Nabawi%2C%20Medina%2C%20Saudi%20Arabia&amp;year=2025&amp;month=4</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","calendarByAddress"],"host":["api","aladhan","com"],"query":[{"key":"address","value":"Al-Masjid%20an-Nabawi%2C%20Medina%2C%20Saudi%20Arabia"},{"key":"year","value":"2025"},{"key":"month","value":"4"}],"variable":[]}},"response":[],"_postman_id":"4b7a82e7-4637-4720-9595-7035b3e7e143"}],"id":"74a46df3-729c-41b5-a892-2adf380a63ca","_postman_id":"74a46df3-729c-41b5-a892-2adf380a63ca","description":""},{"name":"Qibla Direction","item":[{"name":"Qibla Direction","id":"ab295d20-b4d8-4798-ba8e-d134d3da1f27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/qibla/51.508515/-0.125487","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/qibla/51.508515/-0.125487\">http://api.aladhan.com/v1/qibla/51.508515/-0.125487</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","qibla","51.508515","-0.125487"],"host":["api","aladhan","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab295d20-b4d8-4798-ba8e-d134d3da1f27"}],"id":"4bd96109-498d-4ace-8d09-0c06e42b7508","_postman_id":"4bd96109-498d-4ace-8d09-0c06e42b7508","description":""},{"name":"Islamic Date & Calendar","item":[{"name":"Gregorian to Hijri","id":"2a80d4e0-e3ac-4580-b4e7-ea9feb97a9a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/gToH/11-08-2025","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/gToH/11-08-2025\">http://api.aladhan.com/v1/gToH/11-08-2025</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","gToH","11-08-2025"],"host":["api","aladhan","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a80d4e0-e3ac-4580-b4e7-ea9feb97a9a0"},{"name":"Hijri to Gregorian","id":"94e5c479-0d45-493e-b268-8ea41e77fb28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/hToG/15-02-1447","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/hToG/15-02-1447\">http://api.aladhan.com/v1/hToG/15-02-1447</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","hToG","15-02-1447"],"host":["api","aladhan","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"94e5c479-0d45-493e-b268-8ea41e77fb28"},{"name":"Islamic Month Info","id":"f61edb5d-fa38-40f4-8a9c-9adc926aa8d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/hijriCalendar/9/1447","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/hijriCalendar/9/1447\">http://api.aladhan.com/v1/hijriCalendar/9/1447</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","hijriCalendar","9","1447"],"host":["api","aladhan","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f61edb5d-fa38-40f4-8a9c-9adc926aa8d3"},{"name":"Upcoming Islamic Holidays","id":"0e4e48a2-e889-4b4a-b126-4037aa28c7c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/holidays/1447","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/holidays/1447\">http://api.aladhan.com/v1/holidays/1447</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","holidays","1447"],"host":["api","aladhan","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e4e48a2-e889-4b4a-b126-4037aa28c7c1"}],"id":"9b67125a-0d7e-4104-ae38-141ae018f662","_postman_id":"9b67125a-0d7e-4104-ae38-141ae018f662","description":""},{"name":"Helper & Meta Endpoints","item":[{"name":"Get Calculation Methods","id":"aa86bc68-9d33-494d-aa32-3b1ed7986908","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/methods","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/methods\">http://api.aladhan.com/v1/methods</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","methods"],"host":["api","aladhan","com"],"query":[],"variable":[]}},"response":[{"id":"ec56c310-0a9b-447c-b602-a85ad9ea2f1f","name":"Get Calculation Methods","originalRequest":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/methods"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Remaining-Second","value":"23"},{"key":"X-RateLimit-Limit-Second","value":"24"},{"key":"RateLimit-Limit","value":"24"},{"key":"RateLimit-Remaining","value":"23"},{"key":"RateLimit-Reset","value":"1"},{"key":"X-Cache-Key","value":"ebf3be19fb2f47f5edb3143ecad5782e073e691b4b322bb5ba08a8d0ba804870"},{"key":"Access-Control-Allow-Headers","value":"Authorization, origin, if-none-match"},{"key":"Cache-Control","value":"public,max-age=7200"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, PATCH, OPTIONS"},{"key":"Date","value":"Mon, 11 Aug 2025 20:21:06 GMT"},{"key":"Access-Control-Expose-Headers","value":"*"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"age","value":"1637"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Server","value":"Unit/1.34.2"},{"key":"X-Cache-Status","value":"Hit"},{"key":"ETag","value":"fae915fbd649d8c58613e4357724ace3"},{"key":"X-Powered-By","value":"Kipchak by Mamluk"},{"key":"Content-Length","value":"3578"},{"key":"X-Kong-Upstream-Latency","value":"0"},{"key":"X-Kong-Proxy-Latency","value":"0"},{"key":"Via","value":"1.1 kong/3.9.0"},{"key":"X-Kong-Request-Id","value":"9ea8e9660f6c44032d616459aa734764"},{"key":"Server-Timing","value":"cfReqDur;dur=44.905"},{"key":"Cf-Team","value":"293c7d4abe0000e52342fbf400000001"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"status\": \"OK\",\n    \"data\": {\n        \"MWL\": {\n            \"id\": 3,\n            \"name\": \"Muslim World League\",\n            \"params\": {\n                \"Fajr\": 18,\n                \"Isha\": 17\n            },\n            \"location\": {\n                \"latitude\": 51.5194682,\n                \"longitude\": -0.1360365\n            }\n        },\n        \"ISNA\": {\n            \"id\": 2,\n            \"name\": \"Islamic Society of North America (ISNA)\",\n            \"params\": {\n                \"Fajr\": 15,\n                \"Isha\": 15\n            },\n            \"location\": {\n                \"latitude\": 39.70421229999999,\n                \"longitude\": -86.39943869999999\n            }\n        },\n        \"EGYPT\": {\n            \"id\": 5,\n            \"name\": \"Egyptian General Authority of Survey\",\n            \"params\": {\n                \"Fajr\": 19.5,\n                \"Isha\": 17.5\n            },\n            \"location\": {\n                \"latitude\": 30.0444196,\n                \"longitude\": 31.2357116\n            }\n        },\n        \"MAKKAH\": {\n            \"id\": 4,\n            \"name\": \"Umm Al-Qura University, Makkah\",\n            \"params\": {\n                \"Fajr\": 18.5,\n                \"Isha\": \"90 min\"\n            },\n            \"location\": {\n                \"latitude\": 21.3890824,\n                \"longitude\": 39.8579118\n            }\n        },\n        \"KARACHI\": {\n            \"id\": 1,\n            \"name\": \"University of Islamic Sciences, Karachi\",\n            \"params\": {\n                \"Fajr\": 18,\n                \"Isha\": 18\n            },\n            \"location\": {\n                \"latitude\": 24.8614622,\n                \"longitude\": 67.0099388\n            }\n        },\n        \"TEHRAN\": {\n            \"id\": 7,\n            \"name\": \"Institute of Geophysics, University of Tehran\",\n            \"params\": {\n                \"Fajr\": 17.7,\n                \"Isha\": 14,\n                \"Maghrib\": 4.5,\n                \"Midnight\": \"JAFARI\"\n            },\n            \"location\": {\n                \"latitude\": 35.6891975,\n                \"longitude\": 51.3889736\n            }\n        },\n        \"JAFARI\": {\n            \"id\": 0,\n            \"name\": \"Shia Ithna-Ashari, Leva Institute, Qum\",\n            \"params\": {\n                \"Fajr\": 16,\n                \"Isha\": 14,\n                \"Maghrib\": 4,\n                \"Midnight\": \"JAFARI\"\n            },\n            \"location\": {\n                \"latitude\": 34.6415764,\n                \"longitude\": 50.8746035\n            }\n        },\n        \"GULF\": {\n            \"id\": 8,\n            \"name\": \"Gulf Region\",\n            \"params\": {\n                \"Fajr\": 19.5,\n                \"Isha\": \"90 min\"\n            },\n            \"location\": {\n                \"latitude\": 24.1323638,\n                \"longitude\": 53.3199527\n            }\n        },\n        \"KUWAIT\": {\n            \"id\": 9,\n            \"name\": \"Kuwait\",\n            \"params\": {\n                \"Fajr\": 18,\n                \"Isha\": 17.5\n            },\n            \"location\": {\n                \"latitude\": 29.375859,\n                \"longitude\": 47.9774052\n            }\n        },\n        \"QATAR\": {\n            \"id\": 10,\n            \"name\": \"Qatar\",\n            \"params\": {\n                \"Fajr\": 18,\n                \"Isha\": \"90 min\"\n            },\n            \"location\": {\n                \"latitude\": 25.2854473,\n                \"longitude\": 51.5310398\n            }\n        },\n        \"SINGAPORE\": {\n            \"id\": 11,\n            \"name\": \"Majlis Ugama Islam Singapura, Singapore\",\n            \"params\": {\n                \"Fajr\": 20,\n                \"Isha\": 18\n            },\n            \"location\": {\n                \"latitude\": 1.352083,\n                \"longitude\": 103.819836\n            }\n        },\n        \"FRANCE\": {\n            \"id\": 12,\n            \"name\": \"Union Organization Islamic de France\",\n            \"params\": {\n                \"Fajr\": 12,\n                \"Isha\": 12\n            },\n            \"location\": {\n                \"latitude\": 48.856614,\n                \"longitude\": 2.3522219\n            }\n        },\n        \"TURKEY\": {\n            \"id\": 13,\n            \"name\": \"Diyanet İşleri Başkanlığı, Turkey (experimental)\",\n            \"params\": {\n                \"Fajr\": 18,\n                \"Isha\": 17\n            },\n            \"location\": {\n                \"latitude\": 39.9333635,\n                \"longitude\": 32.8597419\n            }\n        },\n        \"RUSSIA\": {\n            \"id\": 14,\n            \"name\": \"Spiritual Administration of Muslims of Russia\",\n            \"params\": {\n                \"Fajr\": 16,\n                \"Isha\": 15\n            },\n            \"location\": {\n                \"latitude\": 54.73479099999999,\n                \"longitude\": 55.9578555\n            }\n        },\n        \"MOONSIGHTING\": {\n            \"id\": 15,\n            \"name\": \"Moonsighting Committee Worldwide (Moonsighting.com)\",\n            \"params\": {\n                \"shafaq\": \"general\"\n            }\n        },\n        \"DUBAI\": {\n            \"id\": 16,\n            \"name\": \"Dubai (experimental)\",\n            \"params\": {\n                \"Fajr\": 18.2,\n                \"Isha\": 18.2\n            },\n            \"location\": {\n                \"latitude\": 25.0762677,\n                \"longitude\": 55.087404\n            }\n        },\n        \"JAKIM\": {\n            \"id\": 17,\n            \"name\": \"Jabatan Kemajuan Islam Malaysia (JAKIM)\",\n            \"params\": {\n                \"Fajr\": 20,\n                \"Isha\": 18\n            },\n            \"location\": {\n                \"latitude\": 3.139003,\n                \"longitude\": 101.686855\n            }\n        },\n        \"TUNISIA\": {\n            \"id\": 18,\n            \"name\": \"Tunisia\",\n            \"params\": {\n                \"Fajr\": 18,\n                \"Isha\": 18\n            },\n            \"location\": {\n                \"latitude\": 36.8064948,\n                \"longitude\": 10.1815316\n            }\n        },\n        \"ALGERIA\": {\n            \"id\": 19,\n            \"name\": \"Algeria\",\n            \"params\": {\n                \"Fajr\": 18,\n                \"Isha\": 17\n            },\n            \"location\": {\n                \"latitude\": 36.753768,\n                \"longitude\": 3.0587561\n            }\n        },\n        \"KEMENAG\": {\n            \"id\": 20,\n            \"name\": \"Kementerian Agama Republik Indonesia\",\n            \"params\": {\n                \"Fajr\": 20,\n                \"Isha\": 18\n            },\n            \"location\": {\n                \"latitude\": -6.2087634,\n                \"longitude\": 106.845599\n            }\n        },\n        \"MOROCCO\": {\n            \"id\": 21,\n            \"name\": \"Morocco\",\n            \"params\": {\n                \"Fajr\": 19,\n                \"Isha\": 17\n            },\n            \"location\": {\n                \"latitude\": 33.9715904,\n                \"longitude\": -6.8498129\n            }\n        },\n        \"PORTUGAL\": {\n            \"id\": 22,\n            \"name\": \"Comunidade Islamica de Lisboa\",\n            \"params\": {\n                \"Fajr\": 18,\n                \"Maghrib\": \"3 min\",\n                \"Isha\": \"77 min\"\n            },\n            \"location\": {\n                \"latitude\": 38.7222524,\n                \"longitude\": -9.1393366\n            }\n        },\n        \"JORDAN\": {\n            \"id\": 23,\n            \"name\": \"Ministry of Awqaf, Islamic Affairs and Holy Places, Jordan\",\n            \"params\": {\n                \"Fajr\": 18,\n                \"Maghrib\": \"5 min\",\n                \"Isha\": 18\n            },\n            \"location\": {\n                \"latitude\": 31.9461222,\n                \"longitude\": 35.923844\n            }\n        },\n        \"CUSTOM\": {\n            \"id\": 99\n        }\n    }\n}"}],"_postman_id":"aa86bc68-9d33-494d-aa32-3b1ed7986908"},{"name":"Get Asma-el-Husna (All)","id":"da94e3a5-dca5-43bb-b264-9eb6986c52ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/asmaAlHusna","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/asmaAlHusna\">http://api.aladhan.com/v1/asmaAlHusna</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","asmaAlHusna"],"host":["api","aladhan","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"da94e3a5-dca5-43bb-b264-9eb6986c52ce"},{"name":"Get Specific Asma-el-Husna","id":"722f1945-b536-44fd-8f1c-c2bd4921db8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.aladhan.com/v1/asmaAlHusna/99","description":"<p>Generated from cURL: curl --location '<a href=\"http://api.aladhan.com/v1/asmaAlHusna/99\">http://api.aladhan.com/v1/asmaAlHusna/99</a>'</p>\n","urlObject":{"protocol":"http","path":["v1","asmaAlHusna","99"],"host":["api","aladhan","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"722f1945-b536-44fd-8f1c-c2bd4921db8a"}],"id":"11ddeb51-4d72-4735-94d6-ec6fa7d715b5","_postman_id":"11ddeb51-4d72-4735-94d6-ec6fa7d715b5","description":""}],"event":[{"listen":"prerequest","script":{"id":"be971b2c-f71a-4ac3-9696-065813aaffcb","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"4048c20b-9080-4e61-9ef3-5eda566b6447","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"BASE_URL","value":"http://api.aladhan.com/v1/","type":"string"}]}