{"info":{"_postman_id":"81b3ff0f-3d1e-4935-8837-9de8966f30b2","name":"API_assignment","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"25094687","collectionId":"81b3ff0f-3d1e-4935-8837-9de8966f30b2","publishedId":"2sA2xnwpAr","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-03-16T09:28:05.000Z"},"item":[{"name":"Authentication","id":"525b8cb0-55d2-499c-a085-557f348696c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"admin\",\r\n    \"password\": \"password\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8001/auth","description":"<p>This endpoint is used to authenticate a user and obtain a token for accessing protected resources. The HTTP POST request should be sent to <a href=\"http://localhost:3000/auth\">http://localhost:3000/auth</a> with the raw request body type. The request body should include the username and password parameters.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li>username (text, required): \"utkarsh\"</li>\n<li>password (text, required): \"password\"</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon successful authentication, the server will respond with a status code of 200 and a JSON object containing a token.</p>\n<p>Example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"token\": \"example_token\"\n}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8001","path":["auth"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"28a322a8-f25b-44bc-b8d6-b1b2b5af9f75","name":"Authentication","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"admin\",\r\n    \"password\": \"password\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8001/auth"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"143"},{"key":"ETag","value":"W/\"8f-EwoUYEBQ4A+ra4I/t9shhwjonK0\""},{"key":"Date","value":"Sat, 16 Mar 2024 09:15:28 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzEwNTgwNTI4fQ.2BMphgYZLu0AXYmFfALOiFOE-edmVu-frZvUGiUo0H4\"\n}"}],"_postman_id":"525b8cb0-55d2-499c-a085-557f348696c5"},{"name":"Get_countries_name","id":"943f9d6c-5cb5-4bf9-8cfb-f339b899fe8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"filter\": {\r\n        \"population\": {\r\n            \"min\": 10000000,\r\n            \"max\": 20000000\r\n        },\r\n        \"area\": {\r\n            \"min\": 10000,\r\n            \"max\": 50000\r\n        }\r\n        // \"language\": \"Spanish\"\r\n    },\r\n    \"sort\": {\r\n        \"field\": \"name\",\r\n        \"order\": \"asc\"\r\n    },\r\n    \"page\": 1,\r\n    \"limit\": 10\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8001/countries","description":"<p>This endpoint retrieves a list of countries based on the provided filter criteria, sorting, pagination, and limit parameters.</p>\n<p>The request should be sent to the following URL using an HTTP GET method:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>http://localhost:8001/countries\n\n</code></pre><h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li><code>filter</code>: Object containing filter criteria for population, area, and language.<ul>\n<li><code>population</code>: Object with minimum and maximum population values.<ul>\n<li><code>min</code>: (number) Minimum population value.</li>\n<li><code>max</code>: (number) Maximum population value.</li>\n</ul>\n</li>\n<li><code>area</code>: Object with minimum and maximum area values.<ul>\n<li><code>min</code>: (number) Minimum area value.</li>\n<li><code>max</code>: (number) Maximum area value.</li>\n</ul>\n</li>\n<li><code>language</code>: (string) Language spoken in the countries.</li>\n</ul>\n</li>\n<li><code>sort</code>: Object containing sorting criteria.<ul>\n<li><code>field</code>: (string) Field to sort the countries by.</li>\n<li><code>order</code>: (string) Sorting order, either \"asc\" for ascending or \"desc\" for descending.</li>\n</ul>\n</li>\n<li><code>page</code>: (number) Page number for pagination.</li>\n<li><code>limit</code>: (number) Maximum number of countries to be returned per page.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will have a status code of 401 and a content type of application/json. The response body will contain an error message in JSON format.</p>\n<h4 id=\"example-response\">Example Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"error\":\"\"}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8001","path":["countries"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"af7ad48f-7f65-4ac8-8795-fddd0aca173a","name":"Get_countries_name","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"filter\": {\r\n        \"population\": {\r\n            \"min\": 10000000,\r\n            \"max\": 20000000\r\n        },\r\n        \"area\": {\r\n            \"min\": 10000,\r\n            \"max\": 50000\r\n        }\r\n        // \"language\": \"Spanish\"\r\n    },\r\n    \"sort\": {\r\n        \"field\": \"name\",\r\n        \"order\": \"asc\"\r\n    },\r\n    \"page\": 1,\r\n    \"limit\": 10\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8001/countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"127"},{"key":"ETag","value":"W/\"7f-alvim07ck1CRgW7Bnz7bH7FUT4U\""},{"key":"Date","value":"Sat, 16 Mar 2024 09:20:33 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Belgium\"\n    },\n    {\n        \"name\": \"Burundi\"\n    },\n    {\n        \"name\": \"Dominican Republic\"\n    },\n    {\n        \"name\": \"Haiti\"\n    },\n    {\n        \"name\": \"Netherlands\"\n    },\n    {\n        \"name\": \"Rwanda\"\n    }\n]"}],"_postman_id":"943f9d6c-5cb5-4bf9-8cfb-f339b899fe8c"},{"name":"Get_country_by_name","event":[{"listen":"test","script":{"id":"2ea65341-c1ba-49b9-ac0d-0d36a901dabc","exec":["pm.test(\"Response status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","\r","pm.test(\"Response body is a non-empty array\", function () {\r","    var responseData = pm.response.json();\r","    pm.expect(responseData).to.be.an('array').that.is.not.empty;\r","});\r","\r","pm.test(\"Response contains common name, official name, and native name\", function () {\r","    var responseData = pm.response.json();\r","    responseData.forEach(function(country) {\r","        pm.expect(country.name.common).to.be.a('string');\r","        pm.expect(country.name.official).to.be.a('string');\r","        pm.expect(country.name.nativeName.eng.official).to.be.a('string');\r","        pm.expect(country.name.nativeName.eng.common).to.be.a('string');\r","    });\r","});\r","var template = `\r","<style type=\"text/css\">\r","    .tftable {font-size:14px;color:#333333;width:100%;border-width: 1px;border-color: #87ceeb;border-collapse: collapse;}\r","    .tftable th {font-size:18px;background-color:#87ceeb;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;text-align:left;}\r","    .tftable tr {background-color:#ffffff;}\r","    .tftable td {font-size:14px;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;}\r","    .tftable tr:hover {background-color:#e0ffff;}\r","</style>\r","\r","<table class=\"tftable\" border=\"1\">\r","    <tr>\r","        <th>Country Name</th>\r","        <th>Common Name</th>\r","        <th>Official Name</th>\r","        <th>Population</th>\r","        <th>Capital</th>\r","        <th>Region</th>\r","    </tr>\r","    \r","    <tr>\r","        <td>India</td>\r","        <td>{{name.common}}</td>\r","        <td>{{name.official}}</td>\r","        <td>{{population}}</td>\r","        <td>{{capital[0]}}</td>\r","        <td>{{region}}</td>\r","    </tr>\r","</table>\r","`;\r","\r","function constructVisualizerPayload() {\r","    var res = pm.response.json();\r","    var visualizerData = {\r","        name: res[0].name,\r","        population: res[0].population,\r","        capital: res[0].capital,\r","        region: res[0].region\r","    };\r","    return { response: visualizerData }\r","}\r","\r","pm.visualizer.set(template, constructVisualizerPayload());"],"type":"text/javascript","packages":{}}}],"id":"5927a2ab-3fd7-4577-bb09-97286432150e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:8001/countries/india","description":"<p>This endpoint makes an HTTP GET request to fetch information about the country \"India\". The response is in JSON format and includes various details such as country name, top-level domain, currency, language, population, and more.</p>\n<p>The response will include a JSON object with multiple fields such as name, tld, cca2, ccn3, currencies, idd, capital, region, subregion, languages, translations, latlng, landlocked, area, demonyms, flag, maps, population, car, timezones, continents, flags, coatOfArms, startOfWeek, and capitalInfo.</p>\n<p>Please note that the actual values for the fields are masked for privacy reasons.</p>\n","urlObject":{"protocol":"http","port":"8001","path":["countries","india"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"f60ee83d-3c0b-4629-a9a8-823e55ba89a7","name":"Get_country_by_name","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:8001/countries/india"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"7136"},{"key":"ETag","value":"W/\"1be0-Nqh2ZxgKUn3lIbpICYi0FgfyKg8\""},{"key":"Date","value":"Sat, 16 Mar 2024 09:23:27 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": {\n            \"common\": \"British Indian Ocean Territory\",\n            \"official\": \"British Indian Ocean Territory\",\n            \"nativeName\": {\n                \"eng\": {\n                    \"official\": \"British Indian Ocean Territory\",\n                    \"common\": \"British Indian Ocean Territory\"\n                }\n            }\n        },\n        \"tld\": [\n            \".io\"\n        ],\n        \"cca2\": \"IO\",\n        \"ccn3\": \"086\",\n        \"cca3\": \"IOT\",\n        \"independent\": false,\n        \"status\": \"officially-assigned\",\n        \"unMember\": false,\n        \"currencies\": {\n            \"USD\": {\n                \"name\": \"United States dollar\",\n                \"symbol\": \"$\"\n            }\n        },\n        \"idd\": {\n            \"root\": \"+2\",\n            \"suffixes\": [\n                \"46\"\n            ]\n        },\n        \"capital\": [\n            \"Diego Garcia\"\n        ],\n        \"altSpellings\": [\n            \"IO\"\n        ],\n        \"region\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"languages\": {\n            \"eng\": \"English\"\n        },\n        \"translations\": {\n            \"ara\": {\n                \"official\": \"إقليم المحيط الهندي البريطاني\",\n                \"common\": \"إقليم المحيط الهندي البريطاني\"\n            },\n            \"bre\": {\n                \"official\": \"Tiriad breizhveurat Meurvor Indez\",\n                \"common\": \"Tiriad breizhveurat Meurvor Indez\"\n            },\n            \"ces\": {\n                \"official\": \"Britské indickooceánské území\",\n                \"common\": \"Britské indickooceánské území\"\n            },\n            \"cym\": {\n                \"official\": \"Tiriogaeth Brydeinig Cefnfor India\",\n                \"common\": \"Tiriogaeth Brydeinig Cefnfor India\"\n            },\n            \"deu\": {\n                \"official\": \"Britisches Territorium im Indischen Ozean\",\n                \"common\": \"Britisches Territorium im Indischen Ozean\"\n            },\n            \"est\": {\n                \"official\": \"Briti India ookeani ala\",\n                \"common\": \"Briti India ookeani ala\"\n            },\n            \"fin\": {\n                \"official\": \"Brittiläinen Intian valtameren alue\",\n                \"common\": \"Brittiläinen Intian valtameren alue\"\n            },\n            \"fra\": {\n                \"official\": \"Territoire britannique de l' océan Indien\",\n                \"common\": \"Territoire britannique de l'océan Indien\"\n            },\n            \"hrv\": {\n                \"official\": \"British Indian Ocean Territory\",\n                \"common\": \"Britanski Indijskooceanski teritorij\"\n            },\n            \"hun\": {\n                \"official\": \"Brit Indiai-óceáni Terület\",\n                \"common\": \"Brit Indiai-óceáni Terület\"\n            },\n            \"ita\": {\n                \"official\": \"Territorio britannico dell'Oceano Indiano\",\n                \"common\": \"Territorio britannico dell'oceano indiano\"\n            },\n            \"jpn\": {\n                \"official\": \"イギリス領インド洋地域\",\n                \"common\": \"イギリス領インド洋地域\"\n            },\n            \"kor\": {\n                \"official\": \"인도 공화국\",\n                \"common\": \"인도\"\n            },\n            \"nld\": {\n                \"official\": \"Brits Indische Oceaan Territorium\",\n                \"common\": \"Britse Gebieden in de Indische Oceaan\"\n            },\n            \"per\": {\n                \"official\": \"قلمرو بریتانیا در اقیانوس هند\",\n                \"common\": \"قلمرو بریتانیا در اقیانوس هند\"\n            },\n            \"pol\": {\n                \"official\": \"Brytyjskie Terytorium Oceanu Indyjskiego\",\n                \"common\": \"Brytyjskie Terytorium Oceanu Indyjskiego\"\n            },\n            \"por\": {\n                \"official\": \"British Indian Ocean Territory\",\n                \"common\": \"Território Britânico do Oceano Índico\"\n            },\n            \"rus\": {\n                \"official\": \"Британская территория Индийского океана\",\n                \"common\": \"Британская территория в Индийском океане\"\n            },\n            \"slk\": {\n                \"official\": \"Britské indickooceánske územie\",\n                \"common\": \"Britské indickooceánske územie\"\n            },\n            \"spa\": {\n                \"official\": \"Territorio Británico del Océano Índico\",\n                \"common\": \"Territorio Británico del Océano Índico\"\n            },\n            \"srp\": {\n                \"official\": \"Британска територија Индијског океана\",\n                \"common\": \"Британска територија Индијског океана\"\n            },\n            \"swe\": {\n                \"official\": \"Brittiska territoriet i Indiska Oceanen\",\n                \"common\": \"Brittiska territoriet i Indiska Oceanen\"\n            },\n            \"tur\": {\n                \"official\": \"Britanya Hint Okyanusu Toprakları\",\n                \"common\": \"Britanya Hint Okyanusu Toprakları\"\n            },\n            \"urd\": {\n                \"official\": \"برطانوی بحرہند خطہ\",\n                \"common\": \"برطانوی بحرہند خطہ\"\n            },\n            \"zho\": {\n                \"official\": \"英属印度洋领地\",\n                \"common\": \"英属印度洋领地\"\n            }\n        },\n        \"latlng\": [\n            -6,\n            71.5\n        ],\n        \"landlocked\": false,\n        \"area\": 60,\n        \"demonyms\": {\n            \"eng\": {\n                \"f\": \"Indian\",\n                \"m\": \"Indian\"\n            }\n        },\n        \"flag\": \"🇮🇴\",\n        \"maps\": {\n            \"googleMaps\": \"https://goo.gl/maps/bheNucgekVEYozoi6\",\n            \"openStreetMaps\": \"https://www.openstreetmap.org/relation/1993867\"\n        },\n        \"population\": 3000,\n        \"car\": {\n            \"signs\": [\n                \"GB\"\n            ],\n            \"side\": \"right\"\n        },\n        \"timezones\": [\n            \"UTC+06:00\"\n        ],\n        \"continents\": [\n            \"Asia\"\n        ],\n        \"flags\": {\n            \"png\": \"https://flagcdn.com/w320/io.png\",\n            \"svg\": \"https://flagcdn.com/io.svg\"\n        },\n        \"coatOfArms\": {},\n        \"startOfWeek\": \"monday\",\n        \"capitalInfo\": {\n            \"latlng\": [\n                -7.3,\n                72.4\n            ]\n        }\n    },\n    {\n        \"name\": {\n            \"common\": \"India\",\n            \"official\": \"Republic of India\",\n            \"nativeName\": {\n                \"eng\": {\n                    \"official\": \"Republic of India\",\n                    \"common\": \"India\"\n                },\n                \"hin\": {\n                    \"official\": \"भारत गणराज्य\",\n                    \"common\": \"भारत\"\n                },\n                \"tam\": {\n                    \"official\": \"இந்தியக் குடியரசு\",\n                    \"common\": \"இந்தியா\"\n                }\n            }\n        },\n        \"tld\": [\n            \".in\"\n        ],\n        \"cca2\": \"IN\",\n        \"ccn3\": \"356\",\n        \"cca3\": \"IND\",\n        \"cioc\": \"IND\",\n        \"independent\": true,\n        \"status\": \"officially-assigned\",\n        \"unMember\": true,\n        \"currencies\": {\n            \"INR\": {\n                \"name\": \"Indian rupee\",\n                \"symbol\": \"₹\"\n            }\n        },\n        \"idd\": {\n            \"root\": \"+9\",\n            \"suffixes\": [\n                \"1\"\n            ]\n        },\n        \"capital\": [\n            \"New Delhi\"\n        ],\n        \"altSpellings\": [\n            \"IN\",\n            \"Bhārat\",\n            \"Republic of India\",\n            \"Bharat Ganrajya\",\n            \"இந்தியா\"\n        ],\n        \"region\": \"Asia\",\n        \"subregion\": \"Southern Asia\",\n        \"languages\": {\n            \"eng\": \"English\",\n            \"hin\": \"Hindi\",\n            \"tam\": \"Tamil\"\n        },\n        \"translations\": {\n            \"ara\": {\n                \"official\": \"جمهورية الهند\",\n                \"common\": \"الهند\"\n            },\n            \"bre\": {\n                \"official\": \"Republik India\",\n                \"common\": \"India\"\n            },\n            \"ces\": {\n                \"official\": \"Indická republika\",\n                \"common\": \"Indie\"\n            },\n            \"cym\": {\n                \"official\": \"Republic of India\",\n                \"common\": \"India\"\n            },\n            \"deu\": {\n                \"official\": \"Republik Indien\",\n                \"common\": \"Indien\"\n            },\n            \"est\": {\n                \"official\": \"India Vabariik\",\n                \"common\": \"India\"\n            },\n            \"fin\": {\n                \"official\": \"Intian tasavalta\",\n                \"common\": \"Intia\"\n            },\n            \"fra\": {\n                \"official\": \"République de l'Inde\",\n                \"common\": \"Inde\"\n            },\n            \"hrv\": {\n                \"official\": \"Republika Indija\",\n                \"common\": \"Indija\"\n            },\n            \"hun\": {\n                \"official\": \"Indiai Köztársaság\",\n                \"common\": \"India\"\n            },\n            \"ita\": {\n                \"official\": \"Repubblica dell'India\",\n                \"common\": \"India\"\n            },\n            \"jpn\": {\n                \"official\": \"インド共和国\",\n                \"common\": \"インド\"\n            },\n            \"kor\": {\n                \"official\": \"인도 공화국\",\n                \"common\": \"인도\"\n            },\n            \"nld\": {\n                \"official\": \"Republiek India\",\n                \"common\": \"India\"\n            },\n            \"per\": {\n                \"official\": \"جمهوری هندوستان\",\n                \"common\": \"هند\"\n            },\n            \"pol\": {\n                \"official\": \"Republika Indii\",\n                \"common\": \"Indie\"\n            },\n            \"por\": {\n                \"official\": \"República da Índia\",\n                \"common\": \"Índia\"\n            },\n            \"rus\": {\n                \"official\": \"Республика Индия\",\n                \"common\": \"Индия\"\n            },\n            \"slk\": {\n                \"official\": \"Indická republika\",\n                \"common\": \"India\"\n            },\n            \"spa\": {\n                \"official\": \"República de la India\",\n                \"common\": \"India\"\n            },\n            \"srp\": {\n                \"official\": \"Република Индија\",\n                \"common\": \"Индија\"\n            },\n            \"swe\": {\n                \"official\": \"Republiken Indien\",\n                \"common\": \"Indien\"\n            },\n            \"tur\": {\n                \"official\": \"Hindistan Cumhuriyeti\",\n                \"common\": \"Hindistan\"\n            },\n            \"urd\": {\n                \"official\": \"جمہوریہ بھارت\",\n                \"common\": \"بھارت\"\n            },\n            \"zho\": {\n                \"official\": \"印度共和国\",\n                \"common\": \"印度\"\n            }\n        },\n        \"latlng\": [\n            20,\n            77\n        ],\n        \"landlocked\": false,\n        \"borders\": [\n            \"BGD\",\n            \"BTN\",\n            \"MMR\",\n            \"CHN\",\n            \"NPL\",\n            \"PAK\"\n        ],\n        \"area\": 3287590,\n        \"demonyms\": {\n            \"eng\": {\n                \"f\": \"Indian\",\n                \"m\": \"Indian\"\n            },\n            \"fra\": {\n                \"f\": \"Indienne\",\n                \"m\": \"Indien\"\n            }\n        },\n        \"flag\": \"🇮🇳\",\n        \"maps\": {\n            \"googleMaps\": \"https://goo.gl/maps/WSk3fLwG4vtPQetp7\",\n            \"openStreetMaps\": \"https://www.openstreetmap.org/relation/304716\"\n        },\n        \"population\": 1380004385,\n        \"gini\": {\n            \"2011\": 35.7\n        },\n        \"fifa\": \"IND\",\n        \"car\": {\n            \"signs\": [\n                \"IND\"\n            ],\n            \"side\": \"left\"\n        },\n        \"timezones\": [\n            \"UTC+05:30\"\n        ],\n        \"continents\": [\n            \"Asia\"\n        ],\n        \"flags\": {\n            \"png\": \"https://flagcdn.com/w320/in.png\",\n            \"svg\": \"https://flagcdn.com/in.svg\",\n            \"alt\": \"The flag of India is composed of three equal horizontal bands of saffron, white and green. A navy blue wheel with twenty-four spokes — the Ashoka Chakra — is centered in the white band.\"\n        },\n        \"coatOfArms\": {\n            \"png\": \"https://mainfacts.com/media/images/coats_of_arms/in.png\",\n            \"svg\": \"https://mainfacts.com/media/images/coats_of_arms/in.svg\"\n        },\n        \"startOfWeek\": \"monday\",\n        \"capitalInfo\": {\n            \"latlng\": [\n                28.6,\n                77.2\n            ]\n        },\n        \"postalCode\": {\n            \"format\": \"######\",\n            \"regex\": \"^(\\\\d{6})$\"\n        }\n    }\n]"}],"_postman_id":"5927a2ab-3fd7-4577-bb09-97286432150e"},{"name":"https://restcountries.com/v3.1/all?fields=name","id":"56140bb2-3342-4206-8992-3f589f6d66fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://restcountries.com/v3.1/all?fields=name","urlObject":{"protocol":"https","path":["v3.1","all"],"host":["restcountries","com"],"query":[{"key":"fields","value":"name"}],"variable":[]}},"response":[],"_postman_id":"56140bb2-3342-4206-8992-3f589f6d66fb"}]}