{ "info": { "_postman_id": "d139faca-c29c-4768-a254-172a58085e7c", "name": "Quran Content", "description": "# 🚀 Get started here\n\nThis template guides you through CRUD operations (GET, POST, PUT, DELETE), variables, and tests.\n\n## 🔖 **How to use this template**\n\n#### **Step 1: Send requests**\n\nRESTful APIs allow you to perform CRUD operations using the POST, GET, PUT, and DELETE HTTP methods.\n\nThis collection contains each of these [request](https://learning.postman.com/docs/sending-requests/requests/) types. Open each request and click \"Send\" to see what happens.\n\n#### **Step 2: View responses**\n\nObserve the response tab for status code (200 OK), response time, and size.\n\n#### **Step 3: Send new Body data**\n\nUpdate or add new data in \"Body\" in the POST request. Typically, Body data is also used in PUT request.\n\n```\n{\n \"name\": \"Add your name in the body\"\n}\n\n ```\n\n#### **Step 4: Update the variable**\n\nVariables enable you to store and reuse values in Postman. We have created a [variable](https://learning.postman.com/docs/sending-requests/variables/) called `base_url` with the sample request [https://postman-api-learner.glitch.me](https://postman-api-learner.glitch.me). Replace it with your API endpoint to customize this collection.\n\n#### **Step 5: Add tests in the \"Scripts\" tab**\n\nAdding tests to your requests can help you confirm that your API is working as expected. You can write test scripts in JavaScript and view the output in the \"Test Results\" tab.\n\n\"\"\n\n## 💪 Pro tips\n\n- Use folders to group related requests and organize the collection.\n \n- Add more [scripts](https://learning.postman.com/docs/writing-scripts/intro-to-scripts/) to verify if the API works as expected and execute workflows.\n \n\n## 💡Related templates\n\n[API testing basics](https://go.postman.co/redirect/workspace?type=personal&collectionTemplateId=e9a37a28-055b-49cd-8c7e-97494a21eb54&sourceTemplateId=ddb19591-3097-41cf-82af-c84273e56719) \n[API documentation](https://go.postman.co/redirect/workspace?type=personal&collectionTemplateId=e9c28f47-1253-44af-a2f3-20dce4da1f18&sourceTemplateId=ddb19591-3097-41cf-82af-c84273e56719) \n[Authorization methods](https://go.postman.co/redirect/workspace?type=personal&collectionTemplateId=31a9a6ed-4cdf-4ced-984c-d12c9aec1c27&sourceTemplateId=ddb19591-3097-41cf-82af-c84273e56719)", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "_exporter_id": "17596929" }, "item": [ { "name": "Api", "item": [ { "name": "Boot Data", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/api/boot-data", "host": [ "{{baseUrl}}" ], "path": [ "api", "boot-data" ] } }, "response": [] }, { "name": "Single Language", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/api/language/ar", "host": [ "{{baseUrl}}" ], "path": [ "api", "language", "ar" ] } }, "response": [] }, { "name": "Languages", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/api/languages", "host": [ "{{baseUrl}}" ], "path": [ "api", "languages" ] } }, "response": [] }, { "name": "Contact Us", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/api/contact-us", "host": [ "{{baseUrl}}" ], "path": [ "api", "contact-us" ] } }, "response": [] }, { "name": "Search", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [], "body": { "mode": "raw", "raw": "{\n \"translation_book\": \"aya\",\n \"search_query\": \"الحمد\"\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/search", "host": [ "{{baseUrl}}" ], "path": [ "api", "search" ] } }, "response": [] }, { "name": "Ayas Of Sura", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/api/suras/1", "host": [ "{{baseUrl}}" ], "path": [ "api", "suras", "1" ] } }, "response": [] }, { "name": "Page Data", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/api/page/300", "host": [ "{{baseUrl}}" ], "path": [ "api", "page", "300" ] } }, "response": [] }, { "name": "Aya Translation", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [], "body": { "mode": "raw", "raw": "{\n \"translation_book\": \"english_rwwad\",\n \"language\": \"en\"\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/aya-translation/1", "host": [ "{{baseUrl}}" ], "path": [ "api", "aya-translation", "1" ] } }, "response": [] }, { "name": "Translation Books", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/api/translation-books", "host": [ "{{baseUrl}}" ], "path": [ "api", "translation-books" ] } }, "response": [] } ] } ], "event": [ { "listen": "prerequest", "script": { "type": "text/javascript", "exec": [ "" ] } }, { "listen": "test", "script": { "type": "text/javascript", "exec": [ "" ] } } ], "variable": [ { "key": "id", "value": "1" }, { "key": "base_url", "value": "https://postman-rest-api-learner.glitch.me/" } ] }