{"id":17157,"date":"2023-06-16T16:09:35","date_gmt":"2023-06-16T16:09:35","guid":{"rendered":"https:\/\/docs_v3.dataforseo.com\/v3\/?page_id=17157"},"modified":"2023-10-20T16:15:43","modified_gmt":"2023-10-20T16:15:43","slug":"app_data-apple-app_listings-search-live","status":"publish","type":"page","link":"https:\/\/docs.dataforapps.com\/v3\/app_data-apple-app_listings-search-live\/","title":{"rendered":"app_data\/apple\/app_listings\/search\/live"},"content":{"rendered":"<p>[vc_row][vc_column][vc_column_text]<\/p>\n<h2 id=\"get-apple-app-searches-results-by-task_id\">Live Apple App Listings Search Results<\/h2>\n<p>&nbsp;<br \/>\nThis endpoint will provide you with a list of apps published on App Store along with additional information: its ID, icon, reviews count, rating, price, and other data. The results are specific to the <code>title<\/code>, <code>description<\/code>, and <code>categories<\/code> parameters specified in the API request. <\/p>\n<p>[\/vc_column_text]\n        <blockquote>\n            <p>Instead of \u2018login\u2019 and \u2018password\u2019 use your credentials from https:\/\/app.dataforapps.com\/api-dashboard<\/p>\n        <\/blockquote>\n        <pre class=\"highlight bash tab-bash\" style=\"display: none;\">\n            <\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\" data-enlighter-theme=\"mocha\">\r\n# Instead of 'login' and 'password' use your credentials from https:\/\/app.dataforapps.com\/api-dashboard \r\nlogin=\"login\" \r\npassword=\"password\" \r\ncred=\"$(printf ${login}:${password} | base64)\" \r\ncurl --location --request POST \"https:\/\/api.dataforapps.com\/v3\/app_data\/apple\/app_listings\/search\/live\" \r\n--header \"Authorization: Basic ${cred}\"  \r\n--header \"Content-Type: application\/json\" \r\n--data-raw \"[\r\n    {\r\n     \"title\": \"vpn\",\r\n     \"description\": \"vpn\",\r\n     \"categories\": [\r\n         \"Tools\"\r\n        ],\r\n     \"order_by\": [\"item.rating.value,desc\"],\r\n     \"filters\": [\r\n         [\"item.rating.value\", \">\", 4.5]\r\n        ],\r\n     \"limit\": 10\r\n    }\r\n]\"\r\n<\/pre>\n<p>\n        <\/pre>\n        <pre class=\"highlight php tab-php\" style=\"display: block;\"><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\" data-enlighter-theme=\"mocha\">&lt;?php\r\n\/\/ You can download this file from here https:\/\/cdn.dataforapps.com\/v3\/examples\/php\/php_RestClient.zip?202197\r\nrequire('RestClient.php');\r\n$api_url = 'https:\/\/api.dataforapps.com\/';\r\n\/\/ Instead of 'login' and 'password' use your credentials from https:\/\/app.dataforapps.com\/api-dashboard\r\n$client = new RestClient($api_url, null, 'login', 'password');\r\n$post_array = array();\r\n\/\/ simple way to get a result\r\n$post_array[] = array(\r\n   \"title\" =&gt; \"vpn\",\r\n   \"description\" =&gt; \"vpn\",\r\n   \"order_by\" =&gt; [ \"item.rating.value,desc\" ],\r\n   \"filters\" =&gt; [\r\n      [ \"item.rating.value\",\"&gt;\",4 ]\r\n   ],\r\n   \"limit\" =&gt; 3\r\n);\r\ntry {\r\n   \/\/ POST \/v3\/app_data\/apple\/app_listings\/search\/live\r\n   \/\/ the full list of possible parameters is available in documentation\r\n   $result = $client-&gt;post('\/v3\/app_data\/apple\/app_listings\/search\/live', $post_array);\r\n   print_r($result);\r\n   \/\/ do something with post result\r\n} catch (RestClientException $e) {\r\n   echo \"n\";\r\n   print \"HTTP code: {$e-&gt;getHttpCode()}n\";\r\n   print \"Error code: {$e-&gt;getCode()}n\";\r\n   print \"Message: {$e-&gt;getMessage()}n\";\r\n   print  $e->getTraceAsString();\r\n   echo \"n\";\r\n}\r\n$client = null;\r\n?&gt;<\/pre>\n<p><\/pre>\n        <pre class=\"highlight python tab-python\" style=\"display: none;\">\n            <\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"mocha\">from client import RestClient\r\n# You can download this file from here https:\/\/cdn.dataforapps.com\/v3\/examples\/python\/python_Client.zip\r\nclient = RestClient(\"login\", \"password\")\r\npost_data = dict()\r\n# simple way to set a task\r\npost_data[len(post_data)] = dict(\r\n    title=\"vpn\",\r\n    description=\"vpn\",\r\n    order_by=[\"item.rating.value,desc\"],\r\n    filters=[\r\n        [\"item.rating.value\",\"&gt;\",4]\r\n    ],\r\n    limit=3\r\n)\r\n# POST \/v3\/app_data\/apple\/app_listings\/search\/live\r\nresponse = client.post(\"\/v3\/app_data\/apple\/app_listings\/search\/live\", post_data)\r\n# you can find the full list of the response codes here https:\/\/docs.dataforapps.com\/v3\/appendix\/errors\r\nif response[\"status_code\"] == 20000:\r\n    print(response)\r\n    # do something with result\r\nelse:\r\n    print(\"error. Code: %d Message: %s\" % (response[\"status_code\"], response[\"status_message\"]))\r\n<\/pre>\n<p>\n        <\/pre>\n        <pre class=\"highlight javascript tab-javascript\" style=\"display: none;\">\n            <\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\" data-enlighter-theme=\"mocha\">\r\n\r\nconst post_array = [];\r\n\r\npost_array.push({\r\n    \"title\": \"vpn\",\r\n    \"description\": \"vpn\",\r\n    \"categories\": [\r\n      \"Tools\"\r\n    ],\r\n    \"order_by\": [\r\n      \"item.rating.value,desc\"\r\n    ],\r\n    \"filters\": [\r\n      [\r\n        \"item.rating.value\",\r\n        \">\",\r\n        4.5\r\n      ]\r\n    ],\r\n    \"limit\": 10\r\n  });\r\n\r\nconst axios = require('axios');\r\n\r\naxios({\r\n  method: 'post',\r\n  url: 'https:\/\/api.dataforapps.com\/v3\/business_data\/business_listings\/search\/live',\r\n  auth: {\r\n    username: 'login',\r\n    password: 'password'\r\n  },\r\n  data: post_array,\r\n  headers: {\r\n    'content-type': 'application\/json'\r\n  }\r\n}).then(function (response) {\r\n  var result = response['data']['tasks'];\r\n  \/\/ Result data\r\n  console.log(result);\r\n}).catch(function (error) {\r\n  console.log(error);\r\n});\r\n<\/pre>\n<p>\n        <\/pre>\n        <pre class=\"highlight csharp tab-csharp\" style=\"display: none;\">\n            <\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"csharp\" data-enlighter-theme=\"mocha\">using Newtonsoft.Json;\r\nusing System;\r\nusing System.Collections.Generic;\r\nusing System.Net.Http;\r\nusing System.Net.Http.Headers;\r\nusing System.Text;\r\nusing System.Threading.Tasks;\r\n\r\nnamespace DataForSeoDemos\r\n{\r\n    public static partial class Demos\r\n    {\r\n        public static async Task app_data_app_listings_search_live()\r\n        {\r\n            var httpClient = new HttpClient\r\n            {\r\n                BaseAddress = new Uri(\"https:\/\/api.dataforapps.com\/\"),\r\n                \/\/ Instead of 'login' and 'password' use your credentials from https:\/\/app.dataforapps.com\/api-dashboard\r\n                DefaultRequestHeaders = { Authorization = new AuthenticationHeaderValue(\"Basic\", Convert.ToBase64String(Encoding.ASCII.GetBytes(\"login:password\"))) }\r\n            };\r\n            var postData = new List&lt;object&gt;();\r\n            postData.Add(new\r\n            {\r\n                title = \"vpn\",\r\n                description = \"vpn\",\r\n                order_by = new[]\r\n                {\r\n                    \"item.rating.value,desc\"\r\n                },\r\n                filters = new object[]\r\n                {\r\n                    new object[] { \"item.rating.value\", \"&gt;\", 4 }\r\n                },\r\n                limit = 3\r\n            });\r\n            \/\/ POST \/v3\/app_data\/apple\/app_listings\/search\/live\r\n            \/\/ the full list of possible parameters is available in documentation\r\n\r\n            var taskPostResponse = await httpClient.PostAsync(\"\/v3\/app_data\/apple\/app_listings\/search\/live\", new StringContent(JsonConvert.SerializeObject(postData)));\r\n            var result = JsonConvert.DeserializeObject&lt;dynamic&gt;(await taskPostResponse.Content.ReadAsStringAsync());\r\n            \/\/ you can find the full list of the response codes here https:\/\/docs.dataforapps.com\/v3\/appendix\/errors\r\n            if (result.status_code == 20000)\r\n            {\r\n                \/\/ do something with result\r\n                Console.WriteLine(result);\r\n            }\r\n            else\r\n                Console.WriteLine($\"error. Code: {result.status_code} Message: {result.status_message}\");\r\n        }\r\n    }\r\n}\r\n<\/pre>\n<p>\n        <\/pre>\n        <blockquote>\n            <p>The above command returns JSON structured like this:<\/p>\n        <\/blockquote>\n        <pre class=\"json tab-json\"><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"mocha\">{\r\n  \"version\": \"0.1.20221214\",\r\n  \"status_code\": 20000,\r\n  \"status_message\": \"Ok.\",\r\n  \"time\": \"0.2068 sec.\",\r\n  \"cost\": 0.11,\r\n  \"tasks_count\": 1,\r\n  \"tasks_error\": 0,\r\n  \"tasks\": [\r\n    {\r\n      \"id\": \"06161857-1535-0556-0000-7606dd28ef90\",\r\n      \"status_code\": 20000,\r\n      \"status_message\": \"Ok.\",\r\n      \"time\": \"0.1451 sec.\",\r\n      \"cost\": 0.11,\r\n      \"result_count\": 1,\r\n      \"path\": [\r\n        \"v3\",\r\n        \"app_data\",\r\n        \"apple\",\r\n        \"app_listings\",\r\n        \"search\",\r\n        \"live\"\r\n      ],\r\n      \"data\": {\r\n        \"api\": \"app_data\",\r\n        \"function\": \"search\",\r\n        \"se\": \"apple\",\r\n        \"title\": \"vpn\",\r\n        \"description\": \"vpn\",\r\n        \"categories\": [\r\n          \"Utilities\"\r\n        ],\r\n        \"order_by\": [\r\n          \"item.rating.value,desc\"\r\n        ],\r\n        \"filters\": [\r\n          [\r\n            \"item.rating.value\",\r\n            \">\",\r\n            4.5\r\n          ]\r\n        ],\r\n        \"limit\": 10\r\n      },\r\n      \"result\": [\r\n        {\r\n          \"total_count\": 240,\r\n          \"count\": 10,\r\n          \"offset\": 0,\r\n          \"offset_token\": \"eyJDdXJyZW50T2Zmc2V0IjoxMCwiUmVxdWVzdERhdGEiOnsibG9jYXRpb24iOm51bGwsImxhbmd1YWdlIjpudWxsLCJjYXRlZ29yaWVzIjpbIlV0aWxpdGllcyJdLCJ0aXRsZSI6InZwbiIsImRlc2NyaXB0aW9uIjoidnBuIiwic2VhcmNoX2FmdGVyX3Rva2VuIjpudWxsLCJvcmRlcl9ieSI6eyJvcmRlcl9maWVsZCI6ImluZm8uaXRlbS5yYXRpbmcudmFsdWUiLCJvcmRlcl90eXBlIjoiRGVzYyIsIm5leHQiOm51bGx9LCJsaW1pdCI6MTAsIm9mZnNldCI6bnVsbCwiYWlkIjpudWxsfSwiUmF3UXVlcnkiOnsiZmllbGQiOiJpdGVtLnJhdGluZy52YWx1ZSIsInR5cGUiOiJndCIsInZhbHVlIjo0LjV9LCJTZWFyY2hBZnRlckRhdGEiOls1LjAsIjE1MDQwMzcyNTkiXX0=\",\r\n          \"items\": [\r\n            {\r\n              \"app_id\": \"1138880305\",\r\n              \"se_domain\": \"itunes.apple.com\",\r\n              \"location_code\": 2840,\r\n              \"language_code\": \"en\",\r\n              \"check_url\": \"https:\/\/apps.apple.com\/us\/app\/id1138880305\",\r\n              \"time_update\": \"2023-05-24 03:47:53 +00:00\",\r\n              \"item\": {\r\n                \"type\": \"app_store_info_organic\",\r\n                \"rank_group\": 1,\r\n                \"rank_absolute\": 1,\r\n                \"position\": \"left\",\r\n                \"app_id\": \"1138880305\",\r\n                \"title\": \"GoTrusted VPN\",\r\n                \"url\": \"https:\/\/apps.apple.com\/us\/app\/gotrusted-vpn\/id1138880305\",\r\n                \"icon\": \"https:\/\/is3-ssl.mzstatic.com\/image\/thumb\/Purple118\/v4\/2b\/e8\/c8\/2be8c8fd-913c-9739-6d8e-a657731071fa\/mzl.phybeipr.png\/512x512bb.jpg\",\r\n                \"description\": \"GoTrusted was the first VPN service with strong SSL security and has been providing reliable blazing fast VPN since 2005. GoTrusted secures and keeps your Internet browsing private, allows access to videos and news from anywhere, and is one-click simple to use. Try our 7-day free trial! GoTrusted is unlimited use, unlimited bandwidth per month, no hidden costs, or logging URLs browsed. \\n\\nGoTrusted VPN is simple to use with dozens of locations at the click of a button.\\n\\nWhy GoTrusted?\\n\u2022 We were the original VPN with strong security\\n\u2022 Our network has been up since we started in 2005\\n\u2022 No hidden costs, use the service as much as you like\\n\u2022 Unlimited use and speed\\n\u2022 No monitoring your browsing like free VPNs\\n\u2022 Unlimited free 7-day trial so you can make an informed choice\\n\u2022 Fast and accurate support - we use our own techs, no outsourcing\\n\\nSee what others consider the best VPN for their needs.  Try GoTrusted VPN for free today.\\n\\nGoTrusted Service Notes: \\nGoTrusted VPN is a subscription based service. It is activated through an in-app purchase during or after the free trial should you decide to continue to use the service. Below are the details of how our subscriptions work through in-app purchases:\\n\\n\u2022 The title of our Auto-Renewing subscription service is GoTrusted VPN\\n\u2022 Subscriptions are available in auto-renewing charges of one month, six months, and one year.\\n\u2022 Auto-renewing subscriptions prices are $9.99 every month for the monthly plan, $50.94 every 6 months for the 6-month plan, and $89.88 every 12 months for the 12-month plan.\\n\u2022 Payment will be charged to iTunes Account at confirmation of purchase\\n\u2022 Subscription automatically renews unless auto-renew is turned off at least 24-hours before the end of the current period\\n\u2022 Your iTunes account will be charged for renewal within 24-hours prior to the end of the current period. The renewal costs will be based on your chosen plan: the monthly plan would be $9.99, 6-month plan is $50.94, and the 12-month plan is $89.88\\n\u2022 Subscriptions may be managed by the user and auto-renewal may be turned off by going to the user's iTunes Account Settings after purchase\\n\u2022 Privacy Policy is available at http:\/\/www.gotrusted.com\/privacy.php and Terms of Service is available at http:\/\/www.gotrusted.com\/terms.php\\n\u2022 Any unused portion of a free trial period, if offered, will be forfeited when the user purchases a subscription, where applicable.\",\r\n                \"reviews_count\": 3,\r\n                \"rating\": {\r\n                  \"rating_type\": \"Max5\",\r\n                  \"value\": 5,\r\n                  \"votes_count\": 3,\r\n                  \"rating_max\": 5\r\n                },\r\n                \"price\": {\r\n                  \"current\": 0,\r\n                  \"regular\": null,\r\n                  \"max_value\": null,\r\n                  \"currency\": \"USD\",\r\n                  \"is_price_range\": false,\r\n                  \"displayed_price\": null\r\n                },\r\n                \"is_free\": true,\r\n                \"main_category\": \"Utilities\",\r\n                \"categories\": [\r\n                  \"Utilities\",\r\n                  \"Productivity\"\r\n                ],\r\n                \"languages\": [\r\n                  \"en-US\"\r\n                ],\r\n                \"advisories\": [\r\n                  \"17+\",\r\n                  \"Unrestricted Web Access\"\r\n                ],\r\n                \"developer\": \"Gotrusted\",\r\n                \"developer_id\": \"1138880304\",\r\n                \"developer_url\": \"https:\/\/apps.apple.com\/us\/developer\/gotrusted\/id1138880304\",\r\n                \"version\": \"1.3\",\r\n                \"minimum_os_version\": \"8.0\",\r\n                \"size\": \"22621184\",\r\n                \"released_date\": \"2017-08-08 00:00:00 +00:00\",\r\n                \"last_update_date\": \"2017-08-31 18:32:39 +00:00\",\r\n                \"update_notes\": \"This app has been updated by Apple to display the Apple\u00a0Watch app icon.\\n\\nAdded more countries.\",\r\n                \"images\": [\r\n                  \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/Purple122\/v4\/af\/40\/9a\/af409ab1-0c6c-f5c1-0226-a0bd53b9646d\/pr_source.png\/750x1334bb.jpg\",\r\n                  \"https:\/\/is2-ssl.mzstatic.com\/image\/thumb\/Purple111\/v4\/65\/58\/1b\/65581bbb-5be1-a877-c7b0-4d0cb153ad47\/pr_source.png\/750x1334bb.jpg\",\r\n                  \"https:\/\/is5-ssl.mzstatic.com\/image\/thumb\/Purple111\/v4\/d8\/69\/97\/d8699792-d8e9-c2a2-f7d3-6c1751506a74\/pr_source.png\/750x1334bb.jpg\",\r\n                  \"https:\/\/is5-ssl.mzstatic.com\/image\/thumb\/Purple122\/v4\/86\/4a\/c3\/864ac3f2-29bf-9c7c-3bfd-ec860c674c0d\/pr_source.png\/750x1334bb.jpg\",\r\n                  \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/Purple122\/v4\/3a\/78\/69\/3a786993-200c-9782-eed8-e3538601d9f7\/pr_source.png\/750x1334bb.jpg\"\r\n                ],\r\n                \"similar_apps\": [\r\n                  {\r\n                    \"app_id\": \"1641275407\",\r\n                    \"title\": \"Tea VPN - Secure Net Browser\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/tea-vpn-secure-net-browser\/id1641275407\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1586337664\",\r\n                    \"title\": \"VPN Guard Secure & Fast Proxy\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpn-guard-secure-fast-proxy\/id1586337664\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1488360842\",\r\n                    \"title\": \"QuadVPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/quadvpn\/id1488360842\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1609970218\",\r\n                    \"title\": \"+Trusted VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/trusted-vpn\/id1609970218\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"957102154\",\r\n                    \"title\": \"MyIP.io Your Personal VPN \/ IP\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/myip-io-your-personal-vpn-ip\/id957102154\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1451167903\",\r\n                    \"title\": \"Pangeo M-Pro VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/pangeo-m-pro-vpn\/id1451167903\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1335234563\",\r\n                    \"title\": \"VPNTT - Global Unlimited VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpntt-global-unlimited-vpn\/id1335234563\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1519263185\",\r\n                    \"title\": \"Patriot-VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/patriot-vpn\/id1519263185\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1631141602\",\r\n                    \"title\": \"Wiser VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/wiser-vpn\/id1631141602\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1475503000\",\r\n                    \"title\": \"Bayria: Fastest Streaming VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/bayria-fastest-streaming-vpn\/id1475503000\"\r\n                  }\r\n                ],\r\n                \"more_apps_by_developer\": null\r\n              }\r\n            },\r\n            {\r\n              \"app_id\": \"1451167903\",\r\n              \"se_domain\": \"itunes.apple.com\",\r\n              \"location_code\": 2840,\r\n              \"language_code\": \"en\",\r\n              \"check_url\": \"https:\/\/apps.apple.com\/us\/app\/id1451167903\",\r\n              \"time_update\": \"2023-05-23 20:55:04 +00:00\",\r\n              \"item\": {\r\n                \"type\": \"app_store_info_organic\",\r\n                \"rank_group\": 1,\r\n                \"rank_absolute\": 1,\r\n                \"position\": \"left\",\r\n                \"app_id\": \"1451167903\",\r\n                \"title\": \"Pangeo M-Pro VPN\",\r\n                \"url\": \"https:\/\/apps.apple.com\/us\/app\/pangeo-m-pro-vpn\/id1451167903\",\r\n                \"icon\": \"https:\/\/is2-ssl.mzstatic.com\/image\/thumb\/Purple126\/v4\/16\/1c\/a9\/161ca935-6896-dc3d-2a36-695b2516b995\/AppIcon-0-0-1x_U007emarketing-0-0-0-6-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.jpeg\/512x512bb.jpg\",\r\n                \"description\": \"The Pangeo App (M-Pro) is part of a full toolkit for businesses. Allowing companies to monitor and QA geo-targeted functionality and content.\\n\\nEasily view any geo-targeted asset and content inside mobile apps and web-pages in any global \u200elocation directly from your Apple device. Quickly navigate through all of our 160+ locations and 70+ mobile carriers, select your \u200epreferred location and all browsing and app data will be routed through our premium proxy network \u200equickly and securely.\u200e\\n\\n- See content and assets as it is displayed locally from 160+ global locations and 70+ mobile carriers\\n- View geo-targeted ads inside any app\\n- Validate your mobile ad campaigns\\n- QA your apps from any location\\n- Monitor your competitors\\n\\n\\nPangeo Advantages:\\n\\n- Largest Premium Network - over 160 global locations (including 60 city level locations) and over 70 carriers\\n- High-Performance Servers - Fast, unmasked and secure access to web content\\n- Unmatched Reliability - 99.9% network uptime\\n- True geolocated IPs \u2013 Servers and sims physically located all over the world\\n- Committed to your Privacy - advanced encryption technology and protected servers\",\r\n                \"reviews_count\": 1,\r\n                \"rating\": {\r\n                  \"rating_type\": \"Max5\",\r\n                  \"value\": 5,\r\n                  \"votes_count\": 1,\r\n                  \"rating_max\": 5\r\n                },\r\n                \"price\": {\r\n                  \"current\": 0,\r\n                  \"regular\": null,\r\n                  \"max_value\": null,\r\n                  \"currency\": \"USD\",\r\n                  \"is_price_range\": false,\r\n                  \"displayed_price\": null\r\n                },\r\n                \"is_free\": true,\r\n                \"main_category\": \"Utilities\",\r\n                \"categories\": [\r\n                  \"Utilities\",\r\n                  \"Productivity\"\r\n                ],\r\n                \"languages\": [\r\n                  \"en-US\"\r\n                ],\r\n                \"advisories\": [\r\n                  \"17+\",\r\n                  \"Unrestricted Web Access\"\r\n                ],\r\n                \"developer\": \"GeoEdge\",\r\n                \"developer_id\": \"970003017\",\r\n                \"developer_url\": \"https:\/\/apps.apple.com\/us\/developer\/geoedge\/id970003017\",\r\n                \"version\": \"1.3\",\r\n                \"minimum_os_version\": \"12.0\",\r\n                \"size\": \"1409024\",\r\n                \"released_date\": \"2019-06-28 00:00:00 +00:00\",\r\n                \"last_update_date\": \"2022-02-15 16:14:27 +00:00\",\r\n                \"update_notes\": \"- The UI experience has been improved for all devices\\n- Improved compatibility with latest iOS versions\",\r\n                \"images\": [\r\n                  \"https:\/\/is1-ssl.mzstatic.com\/image\/thumb\/Purple113\/v4\/46\/5c\/54\/465c54f8-9187-6dc3-a177-39bc0352da4c\/pr_source.png\/1242x2688bb.jpg\",\r\n                  \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/Purple113\/v4\/d1\/1d\/27\/d11d270a-c835-2f39-bf7f-052f5165bd1f\/pr_source.png\/1242x2688bb.jpg\",\r\n                  \"https:\/\/is5-ssl.mzstatic.com\/image\/thumb\/Purple123\/v4\/2b\/4b\/fc\/2b4bfc5a-9aa1-9a7e-54ca-fddca234d3a4\/pr_source.png\/1242x2688bb.jpg\",\r\n                  \"https:\/\/is5-ssl.mzstatic.com\/image\/thumb\/Purple123\/v4\/d2\/ef\/8b\/d2ef8bf9-8c05-6819-528c-ea8ce20d0587\/pr_source.png\/1242x2688bb.jpg\"\r\n                ],\r\n                \"similar_apps\": [\r\n                  {\r\n                    \"app_id\": \"1516512070\",\r\n                    \"title\": \"Webfully VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/webfully-vpn\/id1516512070\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1055641342\",\r\n                    \"title\": \"iZone App\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/izone-app\/id1055641342\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1624442074\",\r\n                    \"title\": \"SimpleNet\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/simplenet\/id1624442074\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1535431878\",\r\n                    \"title\": \"TulingX Proxy\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/tulingx-proxy\/id1535431878\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1519263185\",\r\n                    \"title\": \"Patriot-VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/patriot-vpn\/id1519263185\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1563989755\",\r\n                    \"title\": \"HotVPN Service\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/hotvpn-service\/id1563989755\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1540065984\",\r\n                    \"title\": \"FairyVPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/fairyvpn\/id1540065984\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1488360842\",\r\n                    \"title\": \"QuadVPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/quadvpn\/id1488360842\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1592295384\",\r\n                    \"title\": \"FriendsVPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/friendsvpn\/id1592295384\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1601989276\",\r\n                    \"title\": \"GTNET VPN: Privacy&Security\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/gtnet-vpn-privacy-security\/id1601989276\"\r\n                  }\r\n                ],\r\n                \"more_apps_by_developer\": [\r\n                  {\r\n                    \"app_id\": \"970003018\",\r\n                    \"title\": \"GeoEdge M-Pro VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/geoedge-m-pro-vpn\/id970003018\"\r\n                  }\r\n                ]\r\n              }\r\n            },\r\n            {\r\n              \"app_id\": \"1476245357\",\r\n              \"se_domain\": \"itunes.apple.com\",\r\n              \"location_code\": 2840,\r\n              \"language_code\": \"en\",\r\n              \"check_url\": \"https:\/\/apps.apple.com\/us\/app\/id1476245357\",\r\n              \"time_update\": \"2023-05-23 22:06:54 +00:00\",\r\n              \"item\": {\r\n                \"type\": \"app_store_info_organic\",\r\n                \"rank_group\": 1,\r\n                \"rank_absolute\": 1,\r\n                \"position\": \"left\",\r\n                \"app_id\": \"1476245357\",\r\n                \"title\": \"Red Shield VPN\",\r\n                \"url\": \"https:\/\/apps.apple.com\/us\/app\/red-shield-vpn\/id1476245357\",\r\n                \"icon\": \"https:\/\/is5-ssl.mzstatic.com\/image\/thumb\/Purple126\/v4\/d3\/0c\/e9\/d30ce9ef-5255-20c1-b038-609fd6027657\/AppIcon-0-0-1x_U007emarketing-0-0-0-7-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png\/512x512bb.jpg\",\r\n                \"description\": \"A simple apps available for all platforms will help you:\\n\\n\u2022 Bypass censorship\\n\u2022 Protect your traffic from ISPs and other third parties\\n\u2022 Use the Internet as if you were in another country\\n\\nUnlike free services, we do not collect, analyze and sell user data to governments or advertising agencies.\\nOur business model is based on direct payments from users, from which we pay for traffic and other resources of the service.\\n\\nWe accept payment by any cards and cryptocurrencies.\",\r\n                \"reviews_count\": 4,\r\n                \"rating\": {\r\n                  \"rating_type\": \"Max5\",\r\n                  \"value\": 5,\r\n                  \"votes_count\": 4,\r\n                  \"rating_max\": 5\r\n                },\r\n                \"price\": {\r\n                  \"current\": 0,\r\n                  \"regular\": null,\r\n                  \"max_value\": null,\r\n                  \"currency\": \"USD\",\r\n                  \"is_price_range\": false,\r\n                  \"displayed_price\": null\r\n                },\r\n                \"is_free\": true,\r\n                \"main_category\": \"Utilities\",\r\n                \"categories\": [\r\n                  \"Utilities\"\r\n                ],\r\n                \"languages\": [\r\n                  \"en-US\",\r\n                  \"ru\"\r\n                ],\r\n                \"advisories\": [\r\n                  \"17+\",\r\n                  \"Unrestricted Web Access\"\r\n                ],\r\n                \"developer\": \"Red Shield VPN\",\r\n                \"developer_id\": \"1476245356\",\r\n                \"developer_url\": \"https:\/\/apps.apple.com\/us\/developer\/red-shield-vpn\/id1476245356\",\r\n                \"version\": \"2.3.11\",\r\n                \"minimum_os_version\": \"12.1\",\r\n                \"size\": \"27210752\",\r\n                \"released_date\": \"2019-11-06 02:00:00 +00:00\",\r\n                \"last_update_date\": \"2023-05-17 00:49:56 +00:00\",\r\n                \"update_notes\": \"Small improvements\",\r\n                \"images\": [\r\n                  \"https:\/\/is3-ssl.mzstatic.com\/image\/thumb\/PurpleSource112\/v4\/f6\/7b\/5e\/f67b5e2e-5db5-7304-8a35-c3b8f21f2b9f\/8db02a77-5898-4c03-b186-19267fa6b0a9_iPad__U2013_2732-2048__U2013_en__U2013_1.jpg\/2732x2048bb.jpg\",\r\n                  \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/PurpleSource122\/v4\/de\/73\/23\/de732347-1c05-1f3c-b176-bbd6c47bb86f\/797b9162-d3de-4e6a-a494-e289c70c8cf5_iPad__U2013_2732-2048__U2013_en__U2013_2.jpg\/2732x2048bb.jpg\",\r\n                  \"https:\/\/is5-ssl.mzstatic.com\/image\/thumb\/PurpleSource122\/v4\/0c\/2e\/61\/0c2e61c6-7b07-7216-eea7-1e5d28a4ad4a\/74f1ac60-27ca-4adc-850a-d59501077dc9_iPad__U2013_2732-2048__U2013_en__U2013_3.jpg\/2732x2048bb.jpg\"\r\n                ],\r\n                \"similar_apps\": [\r\n                  {\r\n                    \"app_id\": \"1434426876\",\r\n                    \"title\": \"\u041f\u0430\u0440\u043a\u043e\u0432\u043a\u0438 \u0420\u043e\u0441\u0441\u0438\u0438\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/%D0%BF%D0%B0%D1%80%D0%BA%D0%BE%D0%B2%D0%BA%D0%B8-%D1%80%D0%BE%D1%81%D1%81%D0%B8%D0%B8\/id1434426876\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1163269838\",\r\n                    \"title\": \"\u0420\u043e\u0441\u0442\u0435\u043b\u0435\u043a\u043e\u043c \u041c\u043e\u0441\u043a\u0432\u0430\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/%D1%80%D0%BE%D1%81%D1%82%D0%B5%D0%BB%D0%B5%D0%BA%D0%BE%D0%BC-%D0%BC%D0%BE%D1%81%D0%BA%D0%B2%D0%B0\/id1163269838\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1578699175\",\r\n                    \"title\": \"Imba VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/imba-vpn\/id1578699175\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"957324816\",\r\n                    \"title\": \"Yandex Key \u2013 your passwords\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/yandex-key-your-passwords\/id957324816\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1413650865\",\r\n                    \"title\": \"Keenetic\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/keenetic\/id1413650865\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1021212577\",\r\n                    \"title\": \"\u0414\u043e\u0431\u0440\u043e\u0434\u0435\u043b\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/%D0%B4%D0%BE%D0%B1%D1%80%D0%BE%D0%B4%D0%B5%D0%BB\/id1021212577\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1629700735\",\r\n                    \"title\": \"AKEY\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/akey\/id1629700735\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1563989755\",\r\n                    \"title\": \"HotVPN Service\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/hotvpn-service\/id1563989755\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1453815920\",\r\n                    \"title\": \"BitFree\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/bitfree\/id1453815920\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1077325036\",\r\n                    \"title\": \"PickPoint\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/pickpoint\/id1077325036\"\r\n                  }\r\n                ],\r\n                \"more_apps_by_developer\": null\r\n              }\r\n            },\r\n            {\r\n              \"app_id\": \"1480984789\",\r\n              \"se_domain\": \"itunes.apple.com\",\r\n              \"location_code\": 2840,\r\n              \"language_code\": \"en\",\r\n              \"check_url\": \"https:\/\/apps.apple.com\/us\/app\/id1480984789\",\r\n              \"time_update\": \"2023-05-23 21:41:24 +00:00\",\r\n              \"item\": {\r\n                \"type\": \"app_store_info_organic\",\r\n                \"rank_group\": 1,\r\n                \"rank_absolute\": 1,\r\n                \"position\": \"left\",\r\n                \"app_id\": \"1480984789\",\r\n                \"title\": \"VPN SURF\",\r\n                \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpn-surf\/id1480984789\",\r\n                \"icon\": \"https:\/\/is3-ssl.mzstatic.com\/image\/thumb\/Purple126\/v4\/a6\/7d\/1c\/a67d1cf8-f119-6a3f-1be5-e804415c2c02\/AppIcon-0-0-1x_U007emarketing-0-0-0-7-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png\/512x512bb.jpg\",\r\n                \"description\": \"VPN Surf is a brand new take on virtual private networks. With this app not only can you hide your IP address and encrypt traffic, but also keep a sustained connection when switching between networks. You can just run it in the background and forget about it as you will not need to manually reconnect if you lose internet connection. It will do it automatically whenever it detects that the internet is back.\\n\\nVPN Surf is available for both iPhone and iPad devices.\\n\\nSavor the taste of true internet privacy\\nThere is no need for someone to see what sites you visit or which files you download. Keep your browsing data from ISPs and advertisers with VPN Surf. \\n\\nKeep your online activity from ever being seen\\nDue to our strict NO LOGS policy, even we cannot see what parts of the web you are surfing, thus once you leave a website, any mention of you ever being on it is gone.\\n\\nProtect your connections\\nOur VPN tunnels are secured by military-grade encryption which abides by the AES encryption standard, keeping your data as safe as it could be.\\n\\nSecure any Wi-Fi connection\\nThere are many dangers lurking in public Wi-Fi hotspots. Avoid them by using our VPN whenever you connect to one and safely browse from any Wi-Fi network.\\n\\nSurf the web from anywhere you want\\nConnecting to one of our servers changes your IP to that country\u2019s, making other sites think that you have connected from said server\u2019s country.\\n\\nEnjoy real online freedom\\nNo one likes geoblocking. With VPN Surf you can easily circumvent any geoblock put in place by simply connecting to one of our servers.\",\r\n                \"reviews_count\": 3,\r\n                \"rating\": {\r\n                  \"rating_type\": \"Max5\",\r\n                  \"value\": 5,\r\n                  \"votes_count\": 3,\r\n                  \"rating_max\": 5\r\n                },\r\n                \"price\": {\r\n                  \"current\": 0,\r\n                  \"regular\": null,\r\n                  \"max_value\": null,\r\n                  \"currency\": \"USD\",\r\n                  \"is_price_range\": false,\r\n                  \"displayed_price\": null\r\n                },\r\n                \"is_free\": true,\r\n                \"main_category\": \"Utilities\",\r\n                \"categories\": [\r\n                  \"Utilities\"\r\n                ],\r\n                \"languages\": [\r\n                  \"en-US\"\r\n                ],\r\n                \"advisories\": [\r\n                  \"4+\"\r\n                ],\r\n                \"developer\": \"monotinklo sprendimai uab\",\r\n                \"developer_id\": \"1480984788\",\r\n                \"developer_url\": \"https:\/\/apps.apple.com\/us\/developer\/monotinklo-sprendimai-uab\/id1480984788\",\r\n                \"version\": \"2.0.1\",\r\n                \"minimum_os_version\": \"12.4\",\r\n                \"size\": \"6446080\",\r\n                \"released_date\": \"2020-03-24 02:00:00 +00:00\",\r\n                \"last_update_date\": \"2023-03-04 02:04:28 +00:00\",\r\n                \"update_notes\": \"Add Register function\",\r\n                \"images\": [\r\n                  \"https:\/\/is2-ssl.mzstatic.com\/image\/thumb\/Purple123\/v4\/ef\/d7\/f0\/efd7f059-aff8-fad1-8d32-cf6eb3e497b7\/pr_source.png\/1242x2688bb.jpg\",\r\n                  \"https:\/\/is1-ssl.mzstatic.com\/image\/thumb\/Purple113\/v4\/a1\/4c\/f1\/a14cf1f2-d1b8-8708-2480-e1febf8b0511\/pr_source.png\/1242x2688bb.jpg\",\r\n                  \"https:\/\/is3-ssl.mzstatic.com\/image\/thumb\/Purple123\/v4\/80\/4d\/7d\/804d7d48-0b19-4afd-6c94-7fc6deded11e\/pr_source.png\/1242x2688bb.jpg\",\r\n                  \"https:\/\/is2-ssl.mzstatic.com\/image\/thumb\/Purple113\/v4\/5f\/3e\/da\/5f3eda12-0e28-9a21-cd28-444af897cdb8\/pr_source.png\/1242x2688bb.jpg\",\r\n                  \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/Purple113\/v4\/aa\/9f\/2c\/aa9f2c57-555f-3fec-06f3-6baef56666e5\/pr_source.png\/1242x2688bb.jpg\"\r\n                ],\r\n                \"similar_apps\": [\r\n                  {\r\n                    \"app_id\": \"1522454877\",\r\n                    \"title\": \"VPN - Secure Hotspot Shield\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpn-secure-hotspot-shield\/id1522454877\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1565654772\",\r\n                    \"title\": \"IP Shells VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/ip-shells-vpn\/id1565654772\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1174041191\",\r\n                    \"title\": \"SmartyDNS - VPN and Smart DNS\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/smartydns-vpn-and-smart-dns\/id1174041191\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"6443429989\",\r\n                    \"title\": \"IFF VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/iff-vpn\/id6443429989\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1644461787\",\r\n                    \"title\": \"BestLineVPN - Secure VPN Proxy\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/bestlinevpn-secure-vpn-proxy\/id1644461787\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1542742336\",\r\n                    \"title\": \"Ramona Pro\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/ramona-pro\/id1542742336\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"935480186\",\r\n                    \"title\": \"Disconnect Premium VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/disconnect-premium-vpn\/id935480186\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1509050905\",\r\n                    \"title\": \"Super Fast X3 VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/super-fast-x3-vpn\/id1509050905\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1632567540\",\r\n                    \"title\": \"Clickfree Ghost\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/clickfree-ghost\/id1632567540\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1661756727\",\r\n                    \"title\": \"VPN Shadowrocket:Hotspot Proxy\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpn-shadowrocket-hotspot-proxy\/id1661756727\"\r\n                  }\r\n                ],\r\n                \"more_apps_by_developer\": [\r\n                  {\r\n                    \"app_id\": \"1513821874\",\r\n                    \"title\": \"monoVM\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/monovm\/id1513821874\"\r\n                  }\r\n                ]\r\n              }\r\n            },\r\n            {\r\n              \"app_id\": \"1483578247\",\r\n              \"se_domain\": \"itunes.apple.com\",\r\n              \"location_code\": 2840,\r\n              \"language_code\": \"en\",\r\n              \"check_url\": \"https:\/\/apps.apple.com\/us\/app\/id1483578247\",\r\n              \"time_update\": \"2023-05-23 21:27:03 +00:00\",\r\n              \"item\": {\r\n                \"type\": \"app_store_info_organic\",\r\n                \"rank_group\": 1,\r\n                \"rank_absolute\": 1,\r\n                \"position\": \"left\",\r\n                \"app_id\": \"1483578247\",\r\n                \"title\": \"Passage VPN\",\r\n                \"url\": \"https:\/\/apps.apple.com\/us\/app\/passage-vpn\/id1483578247\",\r\n                \"icon\": \"https:\/\/is3-ssl.mzstatic.com\/image\/thumb\/Purple122\/v4\/66\/b6\/c9\/66b6c998-2fb6-4c33-1299-d101852cbed4\/AppIcon-1x_U007emarketing-0-7-0-85-220.png\/512x512bb.jpg\",\r\n                \"description\": \"Passage is a VPN client which implements custom proxies leveraging Network Extension framework.\\n\\nFeatures:\\n\u25a0 Supports Shadowsocks protocol with modern Encryption Methods.\\n\u25a0 Supports geolocation-specific request direct connect mode.\\n\u25a0 Supports custom DNS servers.\\n\u25a0 Takeover all HTTP\/HTTPS\/TCP\/UDP traffic from any applications on your device, and redirect to a specific proxy server.\\n\u25a0 Record and display network requests sent from your iOS devices.\\n\u25a0 Compatible with iPhone and iPad devices.\\n\u25a0 Works on both cellular network and Wi-Fi network.\\n\u25a0 Sync profiles cross devices with iCloud Drive.\",\r\n                \"reviews_count\": 1,\r\n                \"rating\": {\r\n                  \"rating_type\": \"Max5\",\r\n                  \"value\": 5,\r\n                  \"votes_count\": 1,\r\n                  \"rating_max\": 5\r\n                },\r\n                \"price\": {\r\n                  \"current\": 1.99,\r\n                  \"regular\": null,\r\n                  \"max_value\": null,\r\n                  \"currency\": \"USD\",\r\n                  \"is_price_range\": false,\r\n                  \"displayed_price\": null\r\n                },\r\n                \"is_free\": false,\r\n                \"main_category\": \"Utilities\",\r\n                \"categories\": [\r\n                  \"Utilities\",\r\n                  \"Developer Tools\"\r\n                ],\r\n                \"languages\": [\r\n                  \"en-US\"\r\n                ],\r\n                \"advisories\": [\r\n                  \"17+\",\r\n                  \"Unrestricted Web Access\"\r\n                ],\r\n                \"developer\": \"Nil, Inc.\",\r\n                \"developer_id\": \"1443248722\",\r\n                \"developer_url\": \"https:\/\/apps.apple.com\/us\/developer\/nil-inc\/id1443248722\",\r\n                \"version\": \"1.4.2\",\r\n                \"minimum_os_version\": \"13.0\",\r\n                \"size\": \"23107584\",\r\n                \"released_date\": \"2020-12-07 02:00:00 +00:00\",\r\n                \"last_update_date\": \"2022-09-12 01:37:32 +00:00\",\r\n                \"update_notes\": \"\u25a0 Optimized the app for the Brand-new Greatest Ever World's Most Advanced and Powerful Operating System.\\n\u25a0 Various improvements and performance enhancements.\",\r\n                \"images\": [\r\n                  \"https:\/\/is5-ssl.mzstatic.com\/image\/thumb\/PurpleSource124\/v4\/a8\/4b\/c4\/a84bc450-bbd7-feef-c284-0b45f393da78\/2ba1fd7e-5547-41dc-bcef-a43f5a19b560_IMG_0843.PNG\/2732x2048bb.jpg\",\r\n                  \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/PurpleSource114\/v4\/27\/24\/b3\/2724b30b-3780-488b-e3ab-95f46036a147\/1f235456-5ab8-4f15-8c57-9a72f2de2b64_IMG_0844.PNG\/2732x2048bb.jpg\",\r\n                  \"https:\/\/is5-ssl.mzstatic.com\/image\/thumb\/PurpleSource124\/v4\/21\/ab\/1a\/21ab1a24-ac41-0b45-c3ca-57dc2834cc1b\/bd15fec1-6367-48a6-8b71-13c7c13cb1e3_IMG_0845.PNG\/2732x2048bb.jpg\",\r\n                  \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/PurpleSource114\/v4\/3a\/b6\/39\/3ab63901-a2fd-6386-ffe8-5ae33b9d8333\/647c9153-4bd0-4c23-9c40-cd7dc147c084_IMG_0846.PNG\/2732x2048bb.jpg\",\r\n                  \"https:\/\/is5-ssl.mzstatic.com\/image\/thumb\/PurpleSource124\/v4\/86\/73\/d1\/8673d112-4ea0-161f-3d95-ba799e2a219c\/0eaef0ea-5b88-4e1e-95fe-c545d51e2c56_IMG_0847.PNG\/2732x2048bb.jpg\"\r\n                ],\r\n                \"similar_apps\": [\r\n                  {\r\n                    \"app_id\": \"1608318329\",\r\n                    \"title\": \"SKN Tunnel\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/skn-tunnel\/id1608318329\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1488360842\",\r\n                    \"title\": \"QuadVPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/quadvpn\/id1488360842\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1518087438\",\r\n                    \"title\": \"AdvancedVPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/advancedvpn\/id1518087438\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1563989755\",\r\n                    \"title\": \"HotVPN Service\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/hotvpn-service\/id1563989755\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1260223542\",\r\n                    \"title\": \"SSH Tunnel - with SOCKS5 proxy\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/ssh-tunnel-with-socks5-proxy\/id1260223542\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"492548806\",\r\n                    \"title\": \"Grundig Smart Remote\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/grundig-smart-remote\/id492548806\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1175214772\",\r\n                    \"title\": \"GX-FPV\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/gx-fpv\/id1175214772\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1621566063\",\r\n                    \"title\": \"VpnExplore\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpnexplore\/id1621566063\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1579801595\",\r\n                    \"title\": \"HyperlinkVPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/hyperlinkvpn\/id1579801595\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1622803257\",\r\n                    \"title\": \"VPN Matreshka - turbo, private\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpn-matreshka-turbo-private\/id1622803257\"\r\n                  }\r\n                ],\r\n                \"more_apps_by_developer\": null\r\n              }\r\n            },\r\n            {\r\n              \"app_id\": \"1485361691\",\r\n              \"se_domain\": \"itunes.apple.com\",\r\n              \"location_code\": 2840,\r\n              \"language_code\": \"en\",\r\n              \"check_url\": \"https:\/\/apps.apple.com\/us\/app\/id1485361691\",\r\n              \"time_update\": \"2023-05-23 21:17:36 +00:00\",\r\n              \"item\": {\r\n                \"type\": \"app_store_info_organic\",\r\n                \"rank_group\": 1,\r\n                \"rank_absolute\": 1,\r\n                \"position\": \"left\",\r\n                \"app_id\": \"1485361691\",\r\n                \"title\": \"LiCat VPN - Fast Connect\",\r\n                \"url\": \"https:\/\/apps.apple.com\/us\/app\/licat-vpn-fast-connect\/id1485361691\",\r\n                \"icon\": \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/Purple113\/v4\/2b\/73\/f8\/2b73f8f7-93d7-da6f-da00-b91555432420\/AppIcon-0-1x_U007emarketing-0-0-GLES2_U002c0-512MB-sRGB-0-0-0-85-220-0-0-0-7.png\/512x512bb.jpg\",\r\n                \"description\": \"LiCatVPN is a great tool\\n\\nA VPN or 'Virtual Private Network' allows you to create a secure connection to another network, in a different country or region. This effectively shields your iPhone\/iPad from cyber threats when using public Wi-FI connections and more.\\n\\nUnique Features of VPN Unlimited Proxy:\\n\\n No registration needed\\n\\n No login or password required\\n\\n One-tap to connect and disconnect\\n\\nUnlike our competition, we don't sell or store your data. Nothing matters more to us that our user's privacy, and our commitment to protecting your data is second-to-none.\\n\\nTap to Connect!\\n\\nSimply select your desired location and tap 'connect' - that's it, you're secure and anonymous!\\n\\nWe do not monitor\/log any data from our users to ensure full anonymity. We do not store the users email, name or any personal information. Since we don't store any user data we have no intention of sharing data with third parties.\\n\",\r\n                \"reviews_count\": 1,\r\n                \"rating\": {\r\n                  \"rating_type\": \"Max5\",\r\n                  \"value\": 5,\r\n                  \"votes_count\": 1,\r\n                  \"rating_max\": 5\r\n                },\r\n                \"price\": {\r\n                  \"current\": 0,\r\n                  \"regular\": null,\r\n                  \"max_value\": null,\r\n                  \"currency\": \"USD\",\r\n                  \"is_price_range\": false,\r\n                  \"displayed_price\": null\r\n                },\r\n                \"is_free\": true,\r\n                \"main_category\": \"Utilities\",\r\n                \"categories\": [\r\n                  \"Utilities\",\r\n                  \"Reference\"\r\n                ],\r\n                \"languages\": [\r\n                  \"en-US\"\r\n                ],\r\n                \"advisories\": [\r\n                  \"4+\"\r\n                ],\r\n                \"developer\": \"\u65cb \u5f20\",\r\n                \"developer_id\": \"1523265818\",\r\n                \"developer_url\": \"https:\/\/apps.apple.com\/us\/developer\/%E6%97%8B-%E5%BC%A0\/id1523265818\",\r\n                \"version\": \"1.0\",\r\n                \"minimum_os_version\": \"11.0\",\r\n                \"size\": \"15481856\",\r\n                \"released_date\": \"2019-12-08 02:00:00 +00:00\",\r\n                \"last_update_date\": \"2019-10-31 21:01:26 +00:00\",\r\n                \"update_notes\": null,\r\n                \"images\": [\r\n                  \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/Purple123\/v4\/96\/b2\/46\/96b24661-399c-1d16-93c9-4dde8b38e955\/pr_source.png\/2048x2732bb.jpg\",\r\n                  \"https:\/\/is1-ssl.mzstatic.com\/image\/thumb\/Purple123\/v4\/ac\/09\/74\/ac097464-62aa-69e7-026b-56592a6b0d50\/pr_source.png\/2048x2732bb.jpg\",\r\n                  \"https:\/\/is1-ssl.mzstatic.com\/image\/thumb\/Purple113\/v4\/f6\/fa\/cb\/f6facbe4-cbf5-fa11-bff5-f5a53e53fd15\/pr_source.png\/2048x2732bb.jpg\"\r\n                ],\r\n                \"similar_apps\": [\r\n                  {\r\n                    \"app_id\": \"1525525981\",\r\n                    \"title\": \"VPN Proxy Maste - Super Proxy\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpn-proxy-maste-super-proxy\/id1525525981\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1559412526\",\r\n                    \"title\": \"AnyShadow\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/anyshadow\/id1559412526\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1579000273\",\r\n                    \"title\": \"DaddyVPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/daddyvpn\/id1579000273\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1217072703\",\r\n                    \"title\": \"Shiliew - Not just VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/shiliew-not-just-vpn\/id1217072703\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1579801595\",\r\n                    \"title\": \"HyperlinkVPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/hyperlinkvpn\/id1579801595\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1636247158\",\r\n                    \"title\": \"PRO VPN Master - Super Proxy\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/pro-vpn-master-super-proxy\/id1636247158\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1515248945\",\r\n                    \"title\": \"Chute - Network Toolbox\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/chute-network-toolbox\/id1515248945\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1483566411\",\r\n                    \"title\": \"TenonVPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/tenonvpn\/id1483566411\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1576641852\",\r\n                    \"title\": \"GoodVPN - Fast and Security\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/goodvpn-fast-and-security\/id1576641852\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1601989276\",\r\n                    \"title\": \"GTNET VPN: Privacy&Security\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/gtnet-vpn-privacy-security\/id1601989276\"\r\n                  }\r\n                ],\r\n                \"more_apps_by_developer\": null\r\n              }\r\n            },\r\n            {\r\n              \"app_id\": \"1489347659\",\r\n              \"se_domain\": \"itunes.apple.com\",\r\n              \"location_code\": 2840,\r\n              \"language_code\": \"en\",\r\n              \"check_url\": \"https:\/\/apps.apple.com\/us\/app\/id1489347659\",\r\n              \"time_update\": \"2023-05-23 20:58:39 +00:00\",\r\n              \"item\": {\r\n                \"type\": \"app_store_info_organic\",\r\n                \"rank_group\": 1,\r\n                \"rank_absolute\": 1,\r\n                \"position\": \"left\",\r\n                \"app_id\": \"1489347659\",\r\n                \"title\": \"UTunnel VPN\",\r\n                \"url\": \"https:\/\/apps.apple.com\/us\/app\/utunnel-vpn\/id1489347659\",\r\n                \"icon\": \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/Purple122\/v4\/ab\/e2\/3b\/abe23b4e-aad2-8603-40d1-99a58e58db9e\/AppIcon-0-0-1x_U007emarketing-0-0-0-8-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png\/512x512bb.jpg\",\r\n                \"description\": \"UTunnel VPN allows you to setup VPN server in a few minutes. Either for business or personal use, it's as easy as a few clicks. You can bring in your own server or create a server with one of the integrated cloud providers. Once a server has been created, you can start inviting users to join the server and start using it. Following are some of our key features.\\n\\nCloud \/ On-Premise\\nWe offer you Cloud and On-Premise VPN Server subscriptions. You can create a VPN server with one of the integrated cloud providers or deploy a server at your premise. It can also possible to bring in a server created with AWS, Azure or Linode.\\n\\nStatic IP\\nYou are behind a shared IP address when connected to a public VPN server. Many of those shared IP addresses can be blacklisted by various online services. With UTunnel VPN, you will have a clean Static IP address.\\n\\nExternal DNS\\nAll VPN Servers comes with its own DNS servers. But we allow you to use your own DNS server as per your needs. It's an easy configuration change done by updating the DNS server IP address on the UTunnel dashboard and reloading the services.\\n\\nSplit Routing\\nSplit Routing will send only the traffic which is destined for the configured destinations (an IP address or a network) across the tunnel, while limiting other traffic over the internet.\\n\\nRemote Access\\nUTunnel helps you manage remote access to your servers and other online resources with a private VPN Server. There is no need to keep the access open from everywhere. You can limit access to the VPN server IP address and let your employees access it through the VPN.\\n\\nCustom VPN\\nWith UTunnel, you can run the VPN on a desired protocol and port. For example, running OpenVPN on UDP 2050 is just a few clicks away.\\n\\nManual VPN\\nEnabling manual VPN connection from the dashboard will allow your users to download configuration files.\\n\\nAccess Control\\nYou can create users and assign a role from the dashboard. You can even have multiple admins to manage your server.\\n\\n\\nSubscription\\nNo subscription is required to be a member on a server but if If you want to have your own server, you need to subscribe one. New server can be purchased from the app itself, go to server list from left side navigation menu and tap on plus(+) symbol at the top-right side corner. You may need to select server provider, location, server type and number of users before proceeding to in-app purchase. On confirmation, the payment will be made to your iTunes account and your subscription will be renewed every month unless you turned off the subscription at least 24 hours before the end of current period.\\n\\nOnce the subscription is cancelled or the auto renewal is failed, you may lost complete access to the server and  the server will be deleted. For further details on terms of use please visit, https:\/\/www.utunnel.io\/terms-and-conditions.html\\n\\nPrivacy Policy - https:\/\/www.utunnel.io\/privacy-policy.html\",\r\n                \"reviews_count\": 1,\r\n                \"rating\": {\r\n                  \"rating_type\": \"Max5\",\r\n                  \"value\": 5,\r\n                  \"votes_count\": 1,\r\n                  \"rating_max\": 5\r\n                },\r\n                \"price\": {\r\n                  \"current\": 0,\r\n                  \"regular\": null,\r\n                  \"max_value\": null,\r\n                  \"currency\": \"USD\",\r\n                  \"is_price_range\": false,\r\n                  \"displayed_price\": null\r\n                },\r\n                \"is_free\": true,\r\n                \"main_category\": \"Utilities\",\r\n                \"categories\": [\r\n                  \"Utilities\"\r\n                ],\r\n                \"languages\": [\r\n                  \"en-US\"\r\n                ],\r\n                \"advisories\": [\r\n                  \"4+\"\r\n                ],\r\n                \"developer\": \"Secubytes LLC\",\r\n                \"developer_id\": \"1489347658\",\r\n                \"developer_url\": \"https:\/\/apps.apple.com\/us\/developer\/secubytes-llc\/id1489347658\",\r\n                \"version\": \"3.1.0\",\r\n                \"minimum_os_version\": \"12.0\",\r\n                \"size\": \"21209088\",\r\n                \"released_date\": \"2019-12-23 02:00:00 +00:00\",\r\n                \"last_update_date\": \"2022-08-31 13:45:29 +00:00\",\r\n                \"update_notes\": \"We update the UTunnel VPN app as often as possible to make the VPN experience more reliable and user-friendly. This release contains bug fixes and updates including:\\n\\n  - Revamped UI\\n  - Quick navigation between user and business login screens.\\n  - Connect VPN from the server list screen itself.\\n  - Easy server and protocol selection.\\n  - Improvements to IKEV2 and OpenVPN connection methods.\",\r\n                \"images\": [\r\n                  \"https:\/\/is5-ssl.mzstatic.com\/image\/thumb\/PurpleSource122\/v4\/ae\/43\/6e\/ae436e72-b471-d02b-7a7f-4b4a1188a237\/28792684-930b-4629-ad9a-62c6759a4658_1.png\/1242x2688bb.jpg\",\r\n                  \"https:\/\/is1-ssl.mzstatic.com\/image\/thumb\/PurpleSource122\/v4\/10\/c4\/d9\/10c4d9a6-6aab-d0ea-cba9-440d07c64571\/3a17bcd0-e54d-4219-8b4a-ade67b92ee99_2.png\/1242x2688bb.jpg\",\r\n                  \"https:\/\/is3-ssl.mzstatic.com\/image\/thumb\/PurpleSource112\/v4\/78\/e3\/31\/78e331f9-21e0-e89a-9f5c-69b4ffc6a406\/f4e0a413-6e40-4e6f-8626-73b747777cdb_3.png\/1242x2688bb.jpg\",\r\n                  \"https:\/\/is3-ssl.mzstatic.com\/image\/thumb\/PurpleSource122\/v4\/60\/a1\/53\/60a153e1-a04e-3361-8713-5398d84c2e77\/831a3341-5dfc-46c1-85cb-a19bda009311_4.png\/1242x2688bb.jpg\",\r\n                  \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/PurpleSource122\/v4\/6d\/ab\/22\/6dab22c6-23e8-0417-3539-e3ee3c55c46b\/4ba864fa-da3a-47c6-9b53-376238715aad_5.png\/1242x2688bb.jpg\"\r\n                ],\r\n                \"similar_apps\": [\r\n                  {\r\n                    \"app_id\": \"1624438050\",\r\n                    \"title\": \"Rolo VPN Tunnel\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/rolo-vpn-tunnel\/id1624438050\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1618991750\",\r\n                    \"title\": \"Clad VPN: Secure & Fast Proxy\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/clad-vpn-secure-fast-proxy\/id1618991750\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1636554440\",\r\n                    \"title\": \"Tunnel Surf: Fastest Vpn\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/tunnel-surf-fastest-vpn\/id1636554440\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1372618070\",\r\n                    \"title\": \"WEPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/wepn\/id1372618070\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1623411683\",\r\n                    \"title\": \"VPN by Youcan\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpn-by-youcan\/id1623411683\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1585952057\",\r\n                    \"title\": \"SuperVPN Pro - Fast VPN Shield\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/supervpn-pro-fast-vpn-shield\/id1585952057\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1522454877\",\r\n                    \"title\": \"VPN - Secure Hotspot Shield\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpn-secure-hotspot-shield\/id1522454877\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1620139878\",\r\n                    \"title\": \"Speed Tunnel - Secure Privacy\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/speed-tunnel-secure-privacy\/id1620139878\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1609970218\",\r\n                    \"title\": \"+Trusted VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/trusted-vpn\/id1609970218\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1527248400\",\r\n                    \"title\": \"FujiVPN fast & secure access\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/fujivpn-fast-secure-access\/id1527248400\"\r\n                  }\r\n                ],\r\n                \"more_apps_by_developer\": null\r\n              }\r\n            },\r\n            {\r\n              \"app_id\": \"1497442844\",\r\n              \"se_domain\": \"itunes.apple.com\",\r\n              \"location_code\": 2840,\r\n              \"language_code\": \"en\",\r\n              \"check_url\": \"https:\/\/apps.apple.com\/us\/app\/id1497442844\",\r\n              \"time_update\": \"2023-05-23 20:15:50 +00:00\",\r\n              \"item\": {\r\n                \"type\": \"app_store_info_organic\",\r\n                \"rank_group\": 1,\r\n                \"rank_absolute\": 1,\r\n                \"position\": \"left\",\r\n                \"app_id\": \"1497442844\",\r\n                \"title\": \"VPN Super Proxy x 360 Shield\",\r\n                \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpn-super-proxy-x-360-shield\/id1497442844\",\r\n                \"icon\": \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/Purple126\/v4\/4c\/81\/63\/4c8163b2-b196-0af7-4d13-321152636e3f\/AppIcon-0-0-1x_U007emarketing-0-0-0-7-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png\/512x512bb.jpg\",\r\n                \"description\": \"Super VPN WiFi Proxy is the most trusted security and privacy app. Protect yourself from cyber threats with a simple tap of the screen. Get Super VPN Proxy today!\\n\\nFEATURES:\\n* Free forever (free servers only)\\n* No log is saved from any users\\n* Simple one tap connect to VPN\\n* Automatically connects you to the fastest VPN Server\\n\\nSee why users around world trust the app - Get it today!\\n\\n\u25ba FASTEST VPN SERVERS\\nConnect to over 5000 fast VPN servers in 30 countries to keep your internet connection protected from cybercriminals.\\n\\n\u25ba SECURE VPN CONNECTION\\nProtect your privacy by connecting to our fully owned VPN servers, or upgrade to our Premium subscription for more features.\\n\\n\u25ba BROWSE SECURELY\\nStay secure with encrypted traffic between your device and our servers while connected with Super VPN.\\n\\n\u25ba STAY PRIVATE\\nYour privacy is our mission. Connect to any of our reliable VPN servers, and know that we do not keep any logs of your activity. \\n\\n\u25ba NO REGISTRATION REQUIRED\\nUse all the basic features of the app without having to sign up, register, or enter your credit card.\\n\\n&#x25b6; SECURE YOUR INTERNET ACTIVITY\\nSurfing anonymously will give your online privacy the greatest protection. ISPs and the third parties cannot know your identity. You are perfectly encrypted and hidden. Explore sites and apps you like. Secure all your internet connections. \\n\\n&#x25b6; SUPER FAST TO CONNECT AND STREAM\\nFast and stable connection with dedicated stream servers. Stream with a totally fast speed in the HD model. Never miss any important sports lives or series again.\\n\\n\u25ba PROTECT PRIVACY AND SECURE YOUR DEVICE\\nSecures your device\u2019s connection while you\u2019re connected to public wifi hotspots, cellular data networks, and other public locations. It works just like a free proxy but it\u2019s even more secure. Your password and your personal data are secured and you are protected from hacker attacks.\\n\\n\u25ba SUPER FAST FREE VPN\\nIt detects your location automatically and connects you to the nearest server; as a result, your connection will be much faster than other VPN providers.\\n\\n\\nWith one tap of a button, Super VPN Proxy connects you to the fastest server to secure your device\u2019s connection and provide you with a non-traceable IP address and identity.\\n\\nInstall Super VPN WiFi Proxy now to enjoy full anonymity online! \\n\\n\\n\\nLEGAL:\\n\\nPlease see Super VPN Proxy\u2019s Terms of Services\\\" and \\\"Privacy Policy\\\":\\n- Terms of Service: https:\/\/www.best-vpn.co\/best-free-hotspot-vpn-x-vpn-toc\\n- Privacy Policy: https:\/\/www.best-vpn.co\/best-free-hotspot-vpn-x-vpn-pp\\n\\nCONTACT US:\\nIf you have any questions or suggestions, feel free and send them to support@best-vpn.co or visit our website https:\/\/www.best-vpn.co\/ \\n\\n\\n\\n\",\r\n                \"reviews_count\": 2424,\r\n                \"rating\": {\r\n                  \"rating_type\": \"Max5\",\r\n                  \"value\": 5,\r\n                  \"votes_count\": 2424,\r\n                  \"rating_max\": 5\r\n                },\r\n                \"price\": {\r\n                  \"current\": 0,\r\n                  \"regular\": null,\r\n                  \"max_value\": null,\r\n                  \"currency\": \"USD\",\r\n                  \"is_price_range\": false,\r\n                  \"displayed_price\": null\r\n                },\r\n                \"is_free\": true,\r\n                \"main_category\": \"Utilities\",\r\n                \"categories\": [\r\n                  \"Utilities\"\r\n                ],\r\n                \"languages\": [\r\n                  \"en-US\"\r\n                ],\r\n                \"advisories\": [\r\n                  \"4+\"\r\n                ],\r\n                \"developer\": \"best-vpn\",\r\n                \"developer_id\": \"1495755756\",\r\n                \"developer_url\": \"https:\/\/apps.apple.com\/us\/developer\/best-vpn\/id1495755756\",\r\n                \"version\": \"2.1.0\",\r\n                \"minimum_os_version\": \"10.0\",\r\n                \"size\": \"16768000\",\r\n                \"released_date\": \"2020-02-04 02:00:00 +00:00\",\r\n                \"last_update_date\": \"2021-12-10 21:31:45 +00:00\",\r\n                \"update_notes\": \"- Necessary modifications made according to the Developer Code of Conduct.\\n- Urgent fix to improve user experience.\",\r\n                \"images\": [\r\n                  \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/Purple114\/v4\/26\/f6\/bf\/26f6bf94-80ba-2c93-a1f6-ffd9ebb66d9b\/pr_source.png\/2048x2732bb.jpg\",\r\n                  \"https:\/\/is2-ssl.mzstatic.com\/image\/thumb\/Purple113\/v4\/f6\/46\/d9\/f646d976-af90-508c-f2c1-4bf60e2a3cdd\/pr_source.png\/2048x2732bb.jpg\",\r\n                  \"https:\/\/is3-ssl.mzstatic.com\/image\/thumb\/Purple114\/v4\/57\/2e\/33\/572e333d-a109-505f-dd3d-5c8b920bce36\/pr_source.png\/2048x2732bb.jpg\",\r\n                  \"https:\/\/is3-ssl.mzstatic.com\/image\/thumb\/Purple124\/v4\/60\/b8\/7e\/60b87ea1-d6fc-266b-20fd-5d49aa93d4af\/pr_source.png\/2048x2732bb.jpg\",\r\n                  \"https:\/\/is3-ssl.mzstatic.com\/image\/thumb\/Purple114\/v4\/a8\/4f\/57\/a84f5711-08ef-dc9d-dd1a-720a80f5660f\/pr_source.png\/2048x2732bb.jpg\",\r\n                  \"https:\/\/is2-ssl.mzstatic.com\/image\/thumb\/Purple124\/v4\/71\/85\/d6\/7185d6bd-5214-45a8-86bf-ec8090a731d7\/pr_source.png\/2048x2732bb.jpg\"\r\n                ],\r\n                \"similar_apps\": [\r\n                  {\r\n                    \"app_id\": \"1498370316\",\r\n                    \"title\": \"VPN Super Star x Proxy Hotspot\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpn-super-star-x-proxy-hotspot\/id1498370316\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1569524276\",\r\n                    \"title\": \"VPN: Unlimited Proxy Master\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpn-unlimited-proxy-master\/id1569524276\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1452129520\",\r\n                    \"title\": \"Speedy VPN: Best WiFi Security\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/speedy-vpn-best-wifi-security\/id1452129520\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1558393465\",\r\n                    \"title\": \"Scanner App: PDF Docs Scan OCR\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/scanner-app-pdf-docs-scan-ocr\/id1558393465\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1528654989\",\r\n                    \"title\": \"VPN Proxy Master-Unlimit Socks\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpn-proxy-master-unlimit-socks\/id1528654989\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1549627439\",\r\n                    \"title\": \"QR Code Scan & Barcode Reader\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/qr-code-scan-barcode-reader\/id1549627439\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1534297276\",\r\n                    \"title\": \"Widget PLUS+ - Photo & Weather\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/widget-plus-photo-weather\/id1534297276\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1541317915\",\r\n                    \"title\": \"QR Code Reader-Barcode Scan\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/qr-code-reader-barcode-scan\/id1541317915\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1545909324\",\r\n                    \"title\": \"Bitcoin & Crypto Price Widget\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/bitcoin-crypto-price-widget\/id1545909324\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1507656627\",\r\n                    \"title\": \"VPNix | Best VPN Proxy Master\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vpnix-best-vpn-proxy-master\/id1507656627\"\r\n                  }\r\n                ],\r\n                \"more_apps_by_developer\": null\r\n              }\r\n            },\r\n            {\r\n              \"app_id\": \"1497514454\",\r\n              \"se_domain\": \"itunes.apple.com\",\r\n              \"location_code\": 2840,\r\n              \"language_code\": \"en\",\r\n              \"check_url\": \"https:\/\/apps.apple.com\/us\/app\/id1497514454\",\r\n              \"time_update\": \"2023-05-23 20:15:12 +00:00\",\r\n              \"item\": {\r\n                \"type\": \"app_store_info_organic\",\r\n                \"rank_group\": 1,\r\n                \"rank_absolute\": 1,\r\n                \"position\": \"left\",\r\n                \"app_id\": \"1497514454\",\r\n                \"title\": \"Go Plus VPN\",\r\n                \"url\": \"https:\/\/apps.apple.com\/us\/app\/go-plus-vpn\/id1497514454\",\r\n                \"icon\": \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/Purple126\/v4\/c1\/3b\/e3\/c13be340-72e1-6868-5f20-c46f71bd1ecd\/AppIcon-0-0-1x_U007emarketing-0-0-0-5-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png\/512x512bb.jpg\",\r\n                \"description\": \"A free-to-use log-free VPN application featuring brand new customized AnyConnect VPN protocol.\\n\\nTerms of use:\\nhttps:\/\/goplusnew.teesta.xyz\/term_of_service.html\",\r\n                \"reviews_count\": 1,\r\n                \"rating\": {\r\n                  \"rating_type\": \"Max5\",\r\n                  \"value\": 5,\r\n                  \"votes_count\": 1,\r\n                  \"rating_max\": 5\r\n                },\r\n                \"price\": {\r\n                  \"current\": 0,\r\n                  \"regular\": null,\r\n                  \"max_value\": null,\r\n                  \"currency\": \"USD\",\r\n                  \"is_price_range\": false,\r\n                  \"displayed_price\": null\r\n                },\r\n                \"is_free\": true,\r\n                \"main_category\": \"Utilities\",\r\n                \"categories\": [\r\n                  \"Utilities\",\r\n                  \"Travel\"\r\n                ],\r\n                \"languages\": [\r\n                  \"en-US\"\r\n                ],\r\n                \"advisories\": [\r\n                  \"4+\"\r\n                ],\r\n                \"developer\": \"Spirnytel Private Limited\",\r\n                \"developer_id\": \"591033046\",\r\n                \"developer_url\": \"https:\/\/apps.apple.com\/us\/developer\/spirnytel-private-limited\/id591033046\",\r\n                \"version\": \"3.0\",\r\n                \"minimum_os_version\": \"12.0\",\r\n                \"size\": \"23897088\",\r\n                \"released_date\": \"2020-02-25 02:00:00 +00:00\",\r\n                \"last_update_date\": \"2023-05-23 10:07:27 +00:00\",\r\n                \"update_notes\": \"1. Bug Fix.\",\r\n                \"images\": [\r\n                  \"https:\/\/is3-ssl.mzstatic.com\/image\/thumb\/Purple126\/v4\/86\/4a\/24\/864a2414-3921-1186-ca42-561a812f03f3\/pr_source.png\/1242x2208bb.jpg\",\r\n                  \"https:\/\/is1-ssl.mzstatic.com\/image\/thumb\/Purple126\/v4\/78\/7d\/51\/787d5110-ea46-efbc-112e-1746016f96b3\/pr_source.png\/1242x2208bb.jpg\",\r\n                  \"https:\/\/is5-ssl.mzstatic.com\/image\/thumb\/Purple126\/v4\/b7\/a8\/07\/b7a80751-e04f-3721-b5a0-0448a251d5e5\/pr_source.png\/1242x2208bb.jpg\",\r\n                  \"https:\/\/is3-ssl.mzstatic.com\/image\/thumb\/Purple116\/v4\/aa\/1c\/6f\/aa1c6f8d-a95e-c1e0-b215-eb79dbd35884\/pr_source.png\/1242x2208bb.jpg\",\r\n                  \"https:\/\/is1-ssl.mzstatic.com\/image\/thumb\/Purple116\/v4\/08\/4a\/51\/084a51a1-6651-5d5b-7946-150407d19e6a\/pr_source.png\/1242x2208bb.jpg\"\r\n                ],\r\n                \"similar_apps\": [\r\n                  {\r\n                    \"app_id\": \"1476025535\",\r\n                    \"title\": \"Symlex VPN:Safe & Fast UAE VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/symlex-vpn-safe-fast-uae-vpn\/id1476025535\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1604359769\",\r\n                    \"title\": \"Vava VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/vava-vpn\/id1604359769\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1525088920\",\r\n                    \"title\": \"HyMax VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/hymax-vpn\/id1525088920\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1525088948\",\r\n                    \"title\": \"King United VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/king-united-vpn\/id1525088948\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"721507762\",\r\n                    \"title\": \"SEWA\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/sewa\/id721507762\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1592369632\",\r\n                    \"title\": \"AppVPN - Safe VPN protection\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/appvpn-safe-vpn-protection\/id1592369632\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"912158362\",\r\n                    \"title\": \"Smart Salik\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/smart-salik\/id912158362\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"880606146\",\r\n                    \"title\": \"Etihad WE\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/etihad-we\/id880606146\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1600504703\",\r\n                    \"title\": \"SpotVPN Lite, Fast & Secure\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/spotvpn-lite-fast-secure\/id1600504703\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1444227973\",\r\n                    \"title\": \"TravelVPN: Unlimited Proxy VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/travelvpn-unlimited-proxy-vpn\/id1444227973\"\r\n                  }\r\n                ],\r\n                \"more_apps_by_developer\": [\r\n                  {\r\n                    \"app_id\": \"1494273595\",\r\n                    \"title\": \"Red Card VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/red-card-vpn\/id1494273595\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1489846748\",\r\n                    \"title\": \"BD Plus\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/bd-plus\/id1489846748\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1601577218\",\r\n                    \"title\": \"KeyMax VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/keymax-vpn\/id1601577218\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1490743411\",\r\n                    \"title\": \"TP Plus VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/tp-plus-vpn\/id1490743411\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1608759267\",\r\n                    \"title\": \"YouPlus VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/youplus-vpn\/id1608759267\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"6443559877\",\r\n                    \"title\": \"Red Chilli VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/red-chilli-vpn\/id6443559877\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1552662676\",\r\n                    \"title\": \"Matnor\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/matnor\/id1552662676\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1502513227\",\r\n                    \"title\": \"Ace Plus VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/ace-plus-vpn\/id1502513227\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1108402061\",\r\n                    \"title\": \"symlex\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/symlex\/id1108402061\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1670905202\",\r\n                    \"title\": \"Bingo VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/bingo-vpn\/id1670905202\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1484243003\",\r\n                    \"title\": \"Pronet VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/pronet-vpn\/id1484243003\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1039681613\",\r\n                    \"title\": \"True Call\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/true-call\/id1039681613\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1501813617\",\r\n                    \"title\": \"Faz Plus\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/faz-plus\/id1501813617\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1640048264\",\r\n                    \"title\": \"Happy Card VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/happy-card-vpn\/id1640048264\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1608318329\",\r\n                    \"title\": \"SKN Tunnel\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/skn-tunnel\/id1608318329\"\r\n                  }\r\n                ]\r\n              }\r\n            },\r\n            {\r\n              \"app_id\": \"1504037259\",\r\n              \"se_domain\": \"itunes.apple.com\",\r\n              \"location_code\": 2840,\r\n              \"language_code\": \"en\",\r\n              \"check_url\": \"https:\/\/apps.apple.com\/us\/app\/id1504037259\",\r\n              \"time_update\": \"2023-05-23 19:38:26 +00:00\",\r\n              \"item\": {\r\n                \"type\": \"app_store_info_organic\",\r\n                \"rank_group\": 1,\r\n                \"rank_absolute\": 1,\r\n                \"position\": \"left\",\r\n                \"app_id\": \"1504037259\",\r\n                \"title\": \"ShieldApps VPN\",\r\n                \"url\": \"https:\/\/apps.apple.com\/us\/app\/shieldapps-vpn\/id1504037259\",\r\n                \"icon\": \"https:\/\/is1-ssl.mzstatic.com\/image\/thumb\/Purple112\/v4\/d8\/45\/dc\/d845dce3-9dc3-64c0-8212-08b9b90d5cd2\/AppIcon-1x_U007emarketing-0-7-0-85-220.png\/512x512bb.jpg\",\r\n                \"description\": \"ShieldApps VPN secures the connection between your device, the WiFi hotspot that you have connected to, and the world wide web. \\n\\nShieldApps VPN is used to protect your online browsing from tracking, information snooping, \\nip-logging and more, providing you complete anonymity and privacy!\\nShieldApps VPN uses strong encryption algorithms to mask and falsify your location so you\\ncan browse the internet freely, without geographical limitation, censorship or any other restriction.\\n\\n\\nUse ShieldApps VPN to browse the internet, safely, and PRIVATELY!\\n\\n- Keeps you safe when you shop,stream and socialize\\n- Lets you browse the internet anonymously\\n- Offers more than 20 secure connection choices worldwide\\n- Protects your personal information in public WiFi hotspots\\n\\n\\nPlease see ShieldApps \\\"Terms of Use\\\" and \\\"Privacy Policy\\\":\\n\\nTerms of Use: https:\/\/www.shieldapps.com\/eula\\nPrivacy Policy: https:\/\/www.shieldapps.com\/privacy-policy\\n\",\r\n                \"reviews_count\": 2,\r\n                \"rating\": {\r\n                  \"rating_type\": \"Max5\",\r\n                  \"value\": 5,\r\n                  \"votes_count\": 2,\r\n                  \"rating_max\": 5\r\n                },\r\n                \"price\": {\r\n                  \"current\": 0,\r\n                  \"regular\": null,\r\n                  \"max_value\": null,\r\n                  \"currency\": \"USD\",\r\n                  \"is_price_range\": false,\r\n                  \"displayed_price\": null\r\n                },\r\n                \"is_free\": true,\r\n                \"main_category\": \"Utilities\",\r\n                \"categories\": [\r\n                  \"Utilities\",\r\n                  \"Productivity\"\r\n                ],\r\n                \"languages\": [\r\n                  \"en-US\"\r\n                ],\r\n                \"advisories\": [\r\n                  \"4+\"\r\n                ],\r\n                \"developer\": \"ShieldApps\",\r\n                \"developer_id\": \"1495292405\",\r\n                \"developer_url\": \"https:\/\/apps.apple.com\/us\/developer\/shieldapps\/id1495292405\",\r\n                \"version\": \"3.6.2\",\r\n                \"minimum_os_version\": \"13.0\",\r\n                \"size\": \"3101696\",\r\n                \"released_date\": \"2020-05-19 03:00:00 +00:00\",\r\n                \"last_update_date\": \"2022-09-19 23:15:51 +00:00\",\r\n                \"update_notes\": \"bug-fixes and improvemenets\",\r\n                \"images\": [\r\n                  \"https:\/\/is4-ssl.mzstatic.com\/image\/thumb\/PurpleSource124\/v4\/74\/1d\/38\/741d3849-9f14-54b3-3877-edb0f71f51cb\/40a48b70-5353-49fa-9d62-75ad382efc21_ipad4th.png\/2048x2732bb.jpg\"\r\n                ],\r\n                \"similar_apps\": [\r\n                  {\r\n                    \"app_id\": \"1640850361\",\r\n                    \"title\": \"LetVPN - Secure & Fast\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/letvpn-secure-fast\/id1640850361\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1644580172\",\r\n                    \"title\": \"Pix VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/pix-vpn\/id1644580172\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1563531061\",\r\n                    \"title\": \"Zanira\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/zanira\/id1563531061\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"6443924346\",\r\n                    \"title\": \"Dteckt Secure VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/dteckt-secure-vpn\/id6443924346\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1507398362\",\r\n                    \"title\": \"ValeVPN Dedicated VPN Security\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/valevpn-dedicated-vpn-security\/id1507398362\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1632567540\",\r\n                    \"title\": \"Clickfree Ghost\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/clickfree-ghost\/id1632567540\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1519263185\",\r\n                    \"title\": \"Patriot-VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/patriot-vpn\/id1519263185\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1496108699\",\r\n                    \"title\": \"DeVpn- easy securely connect\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/devpn-easy-securely-connect\/id1496108699\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1509050905\",\r\n                    \"title\": \"Super Fast X3 VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/super-fast-x3-vpn\/id1509050905\"\r\n                  },\r\n                  {\r\n                    \"app_id\": \"1539113773\",\r\n                    \"title\": \"CHABI VPN\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/chabi-vpn\/id1539113773\"\r\n                  }\r\n                ],\r\n                \"more_apps_by_developer\": [\r\n                  {\r\n                    \"app_id\": \"1495292796\",\r\n                    \"title\": \"Cyber Privacy Suite\",\r\n                    \"url\": \"https:\/\/apps.apple.com\/us\/app\/cyber-privacy-suite\/id1495292796\"\r\n                  }\r\n                ]\r\n              }\r\n            }\r\n          ]\r\n        }\r\n      ]\r\n    }\r\n  ]\r\n}<\/pre>\n<p><\/pre><aside class=\"success\"><b><code>POST https:\/\/api.dataforapps.com\/v3\/app_data\/apple\/app_listings\/search\/live<\/code><\/b><\/aside><aside class=\"notice\"> Your account will be charged for each request. The cost can be calculated on the <a title=\"Pricing\" href=\"https:\/\/dataforapps.com\/pricing\/\" target=\"_blank\" rel=\"noopener noreferrer\">Pricing<\/a> page.<\/aside>[vc_column_text]All POST data should be sent in the <a href=\"https:\/\/en.wikipedia.org\/wiki\/JSON\">JSON<\/a> format (UTF-8 encoding). The task setting is done using the POST method. When setting a task, you should send all task parameters in the task array of the generic POST array. You can send up to 2000 API calls per minute.<\/p>\n<p>Below you will find a detailed description of the fields you can use for setting a task.<\/p>\n<p><strong>Description of the fields for setting a task:<\/strong><\/p>\n<table style=\"width: 100%; height: 1510px;\">\n<thead>\n<tr style=\"height: 24px;\">\n<th style=\"width: 12.4003%; height: 24px;\">Field name<\/th>\n<th style=\"width: 3.91588%; height: 24px;\">Type<\/th>\n<th style=\"width: 82.9587%; height: 24px;\">Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr style=\"height: 168px;\">\n<td style=\"width: 12.4003%; height: 168px;\"><code>categories<\/code><\/td>\n<td style=\"width: 3.91588%; height: 168px;\">array<\/td>\n<td style=\"width: 82.9587%; height: 168px;\"><em>app categories<\/em><br \/>\noptional field<br \/>\nthe categories you specify are used to search for app listings;<br \/>\nyou can get the full list of available app listing categories by <a href=\"http:\/\/docs.dataforapps.com\/v3\/app_data\/apple\/app_listings\/categories\" rel=\"noopener noreferrer\" target=\"_blank\">this link<\/a><br \/>\nyou can specify <strong>up to 10 categories<\/strong>\n<\/td>\n<\/tr>\n<tr style=\"height: 168px;\">\n<td style=\"width: 12.4003%; height: 168px;\"><code>description<\/code><\/td>\n<td style=\"width: 3.91588%; height: 168px;\">string<\/td>\n<td style=\"width: 82.9587%; height: 168px;\"><em>keyword in the app&#8217;s description<\/em><br \/>\noptional field<br \/>\nkeywords that occur in the description of the app;<br \/>\ncan contain up to 200 symbols\n<\/td>\n<\/tr>\n<tr style=\"height: 168px;\">\n<td style=\"width: 12.4003%; height: 168px;\"><code>title<\/code><\/td>\n<td style=\"width: 3.91588%; height: 168px;\">string<\/td>\n<td style=\"width: 82.9587%; height: 168px;\"><em>keyword in the app&#8217;s title<\/em><br \/>\noptional field<br \/>\nkeywords that occur in the title of the app;<br \/>\ncan contain up to 200 symbols\n<\/td>\n<\/tr>\n<tr style=\"height: 48px;\">\n<td style=\"width: 12.4003%; height: 48px;\"><code>filters<\/code><\/td>\n<td style=\"width: 3.91588%; height: 48px;\">array<\/td>\n<td style=\"width: 82.9587%; height: 48px;\"><em>array of results filtering parameters<\/em><br \/>\noptional field<br \/>\n<strong>you can add several filters at once (8 filters maximum)<\/strong><br \/>\nyou should set a logical operator <code>and<\/code>, <code>or<\/code> between the conditions<br \/>\nthe following operators are supported:<br \/>\n<code>regex<\/code>, <code>&lt;<\/code>, <code>&lt;=<\/code>, <code>&gt;<\/code>, <code>&gt;=<\/code>, <code>=<\/code>, <code>&lt;&gt;<\/code>, <code>in<\/code>, <code>not_in<\/code>, <code>like<\/code>, <code>not_like<\/code><br \/>\nyou can use the <code>%<\/code> operator with <code>like<\/code> and <code>not_like<\/code> to match any string of zero or more characters<br \/>\nexample:<br \/>\n<code>[\"rating.value\",\">\",3]<\/code><\/p>\n<p>you can receive the list of available filters\u00a0by making a separate request to <code>https:\/\/api.dataforapps.com\/v3\/app_data\/apple\/app_listings\/available_filters<\/code>\n<\/td>\n<\/tr>\n<tr style=\"height: 48px;\">\n<td style=\"width: 12.4003%; height: 48px;\"><code>order_by<\/code><\/td>\n<td style=\"width: 3.91588%; height: 48px;\">array<\/td>\n<td style=\"width: 82.9587%; height: 48px;\"><em>results sorting rules<\/em><br \/>\noptional field<br \/>\nyou can use the same values as in the <code>filters<\/code> array to sort the results<br \/>\npossible sorting types:<br \/>\n<code>asc<\/code> &#8211; results will be sorted in the ascending order<br \/>\n<code>desc<\/code> &#8211; results will be sorted in the descending order<br \/>\nyou should use a comma to set up a sorting parameter<br \/>\nexample:<br \/>\n<code>[\"item.rating.value,desc\"]<\/code><\/p>\n<p><strong>note that you can set no more than three sorting rules in a single request<\/strong><br \/>\nyou should use a comma to separate several sorting rules<br \/>\nexample:<br \/>\n<code>[\"item.rating.value,desc\",\"item.rating.value,desc\"]<\/code><\/td>\n<\/tr>\n<tr style=\"height: 192px;\">\n<td style=\"width: 12.4003%; height: 169px;\"><code>limit<\/code><\/td>\n<td style=\"width: 3.91588%; height: 169px;\">integer<\/td>\n<td style=\"width: 82.9587%; height: 169px;\"><em>the maximum number of returned apps<\/em><br \/>\noptional field<br \/>\ndefault value: <code>100<\/code><br \/>\nmaximum value: <code>1000<\/code><\/td>\n<\/tr>\n<tr style=\"height: 192px;\">\n<td style=\"width: 12.4003%; height: 169px;\"><code>offset<\/code><\/td>\n<td style=\"width: 3.91588%; height: 169px;\">integer<\/td>\n<td style=\"width: 82.9587%; height: 169px;\"><em>offset in the results array of returned apps<\/em><br \/>\noptional field<br \/>\ndefault value: <code>0<\/code><br \/>\nif you specify the <code>10<\/code> value, the first ten entities in the results array will be omitted and the data will be provided for the successive entities<\/td>\n<\/tr>\n<tr style=\"height: 192px;\">\n<td style=\"width: 12.4003%; height: 169px;\"><code>offset_token<\/code><\/td>\n<td style=\"width: 3.91588%; height: 169px;\">string<\/td>\n<td style=\"width: 82.9587%; height: 169px;\"><em>token for subsequent requests<\/em><br \/>\noptional field<br \/>\nprovided in the identical filed of the response to each request;<br \/>\nuse this parameter to avoid timeouts while trying to obtain over 100,000 results in a single request;<br \/>\nby specifying the unique <code>offset_token<\/code> value from the response array, you will get the subsequent results of the initial task;<br \/>\n<code>offset_token<\/code> values are unique for each subsequent task<br \/>\n<strong>Note:<\/strong> if the <code>offset_token<\/code> is specified in the request, all other parameters should be identical to the previous request<\/td>\n<\/tr>\n<tr style=\"height: 96px;\">\n<td style=\"width: 12.4003%; height: 96px;\"><code>tag<\/code><\/td>\n<td style=\"width: 3.9884%; height: 96px;\">string<\/td>\n<td style=\"width: 82.8862%; height: 96px;\"><em>user-defined task identifier<\/em><br \/>\noptional field<br \/>\n<em>the character limit is 255<\/em><br \/>\nyou can use this parameter to identify the task and match it with the result<br \/>\nyou will find the specified <code>tag<\/code> value in the <code>data<\/code> object of the response<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>\u200c\u200c\u200c\u200c<br \/>\n\u200c\u200cAs a response of the API server, you will receive <a href=\"https:\/\/en.wikipedia.org\/wiki\/JSON\">JSON<\/a>-encoded data containing a <code>tasks<\/code> array with the information specific to the set tasks.<\/p>\n<p><strong>Description of the fields in the results array:<\/strong><\/p>\n<table style=\"width: 86.001%; height: 1369px;\">\n<thead>\n<tr style=\"height: 24px;\">\n<th style=\"width: 24.3517%; height: 24px;\">Field name<\/th>\n<th style=\"width: 6.19209%; height: 24px;\">Type<\/th>\n<th style=\"width: 79.8065%; height: 24px;\">Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr style=\"height: 48px;\">\n<td style=\"width: 24.3517%; height: 48px;\"><code>version<\/code><\/td>\n<td style=\"width: 6.19209%; height: 48px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 48px;\"><em>the current version of the API<\/em><\/td>\n<\/tr>\n<tr style=\"height: 48px;\">\n<td style=\"width: 38.423%; height: 48px;\"><code>status_code<\/code><\/td>\n<td style=\"width: 1.75219%; height: 48px;\">integer<\/td>\n<td style=\"width: 61.2015%; height: 48px;\"><i>general status code<\/i><br \/>\nyou can find the full list of the response codes <a href=\"\/v3\/appendix\/errors\">here<\/a><br \/>\n<strong>Note:<\/strong> we strongly recommend designing a necessary system for handling related exceptional or error conditions<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"><code>status_message<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>general informational message<\/em><br \/>\nyou can find the full list of general informational messages <a href=\"\/v3\/appendix\/errors\">here<\/a><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"><code>time<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>execution time, seconds<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"><code>cost<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">float<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>total <i>tasks<\/i> cost, USD<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"><code>tasks_count<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">integer<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>the number of tasks in the <strong><code>tasks<\/code><\/strong> array<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"><code>tasks_error<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">integer<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>the number of tasks in the <strong><code>tasks<\/code><\/strong> array that were returned an error<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"><strong><code>tasks<\/code><\/strong><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">array<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>array of tasks<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>id<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>task identifier<\/em><br \/>\n<strong>unique task identifier in our system in the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Universally_unique_identifier\">UUID<\/a> format<\/strong><\/td>\n<\/tr>\n<tr style=\"height: 48px;\">\n<td style=\"width: 24.3517%; height: 48px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>status_code<\/code><\/td>\n<td style=\"width: 6.19209%; height: 48px;\">integer<\/td>\n<td style=\"width: 79.8065%; height: 48px;\"><em>status code of the task<\/em><br \/>\ngenerated by DataForApps; can be within the following range: 10000-60000<br \/>\nyou can find the full list of the response codes <a href=\"\/v3\/appendix\/errors\">here<\/a><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>status_message<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>informational message of the task<\/em><br \/>\nyou can find the full list of general informational messages <a href=\"\/v3\/appendix\/errors\">here<\/a><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>time<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>execution time, seconds<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>cost<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">float<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>cost of the task, USD<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>result_count<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">integer<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>number of elements in the <code>result<\/code> array<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>path<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">array<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>URL path<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>data<\/code><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">object<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>contains the same parameters that you specified in the POST request<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <strong><code>result<\/code><\/strong><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">array<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>array of results<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>total_count<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">integer<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>the total number of relevant results in the database<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>count<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">integer<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>the number of items in the results array<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 192px;\">\n<td style=\"width: 12.4003%; height: 169px;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0<code>offset<\/code><\/td>\n<td style=\"width: 3.91588%; height: 169px;\">integer<\/td>\n<td style=\"width: 82.9587%; height: 169px;\"><em>offset in the results array of returned apps<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 192px;\">\n<td style=\"width: 12.4003%; height: 169px;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0<code>offset_token<\/code><\/td>\n<td style=\"width: 3.91588%; height: 169px;\">string<\/td>\n<td style=\"width: 82.9587%; height: 169px;\"><em>token for subsequent requests<\/em><br \/>\nyou can use this parameter in the POST request to avoid timeouts while trying to obtain over 100,000 results in a single request\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <strong><code>items<\/code><\/strong><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">array<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>array of apps and related data<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>app_id<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>ID of the returned app<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>se_domain<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>search engine domain in a POST array<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>location_code<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">integer<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>location code in a POST array<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>language_code<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>language code in a POST array<\/em><\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>check_url<\/code><\/td>\n<td style=\"width: 6.19209%; height: 25px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 25px;\"><em>direct URL to search engine results<\/em><br \/>\nyou can use it to make sure that we provided accurate results<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>time_update<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>date and time when SERP data was last updated<\/em><br \/>\nin the <a href=\"https:\/\/en.wikipedia.org\/wiki\/ISO_8601\">ISO 8601<\/a> format: \u201cYYYY-MM-DDThh:mm:ss.sssssssZ\u201d<br \/>\nexample:<br \/>\n<code class=\"long-string\">2023-05-23 10:16:19 +00:00<\/code><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>item<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">object<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>detailed information about the app<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>type<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>the item&#8217;s type<\/em><br \/>\npossible item types: <code>\"app_store_info_organic\"<\/code><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>rank_group<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">integer<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>position within a group of elements with identical <code>type<\/code> values<\/em><br \/>\npositions of elements with different <code>type<\/code> values are omitted from <code>rank_group<\/code><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>rank_absolute<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">integer<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>absolute rank among all the listed apps<\/em><br \/>\nabsolute position among all apps on the list<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>position<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>the alignment of the element in SERP<\/em><br \/>\ncan take the following values: <code>left<\/code><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>app_id<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>ID of the returned app<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>title<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>title of the returned app<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>url<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>URL to the app page on App Store<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>icon<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>URL to the app icon<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>description<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>description of the returned app<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>reviews_count<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">integer<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>the total number of reviews the app has<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>rating<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">object<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>average rating of the app<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>rating_type<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>the type of the rating<\/em><br \/>\ncan take the following values: <code>Max5<\/code><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>value<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">float<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>the value of the rating<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>votes_count<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">integer<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>the amount of feedback<\/em><br \/>\nin this case, the value will be <code>null<\/code><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>rating_max<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">integer<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>the maximum value for a <code>rating_type<\/code><\/em><br \/>\nthe maximum value for <code>Max5<\/code> is 5<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>price<\/code><\/td>\n<td style=\"width: 5.77015%; height: 24px;\">object<\/td>\n<td style=\"width: 80.2284%; height: 24px;\"><em>price of the app<\/em><\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>current<\/code><\/td>\n<td style=\"width: 5.77015%; height: 25px;\">float<\/td>\n<td style=\"width: 80.2284%; height: 25px;\"><em>current price<\/em><br \/>\nrefers to the current price indicated in the element<\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>regular<\/code><\/td>\n<td style=\"width: 5.77015%; height: 25px;\">float<\/td>\n<td style=\"width: 80.2284%; height: 25px;\"><i>regular price<\/i><br \/>\nrefers to the regular price indicated in the element<\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>max_value<\/code><\/td>\n<td style=\"width: 5.77015%; height: 25px;\">float<\/td>\n<td style=\"width: 80.2284%; height: 25px;\"><i>the maximum price<\/i><br \/>\nrefers to the maximum price indicated in the element<\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>currency<\/code><\/td>\n<td style=\"width: 5.77015%; height: 25px;\">string<\/td>\n<td style=\"width: 80.2284%; height: 25px;\"><i>currency of the listed price<\/i><br \/>\nISO code of the currency applied to the price<\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>is_price_range<\/code><\/td>\n<td style=\"width: 5.77015%; height: 25px;\">boolean<\/td>\n<td style=\"width: 80.2284%; height: 25px;\"><i>price is provided as a range<\/i><br \/>\nindicates whether a price is provided in a range<\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>displayed_price<\/code><\/td>\n<td style=\"width: 5.77015%; height: 25px;\">string<\/td>\n<td style=\"width: 80.2284%; height: 25px;\"><i>price string in the result<\/i><br \/>\nraw price string as provided in the result<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>is_free<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">boolean<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>indicates whether the app is free<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>main_category<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>app category<\/em><br \/>\nApp Store category most relevant to the app<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>categories<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">array<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>list of additional app categories<\/em><br \/>\nApp Store categories relevant to the app<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>languages<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">array<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>languages supported in the app<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>advisories<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">array<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>app advisory rating and usage restrictions<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>developer<\/code><\/td>\n<td style=\"width: 5.77015%; height: 24px;\">string<\/td>\n<td style=\"width: 80.2284%; height: 24px;\"><em>name of the app developer<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>developer_id<\/code><\/td>\n<td style=\"width: 5.77015%; height: 24px;\">string<\/td>\n<td style=\"width: 80.2284%; height: 24px;\"><em>ID of the developer on App Store<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>developer_url<\/code><\/td>\n<td style=\"width: 5.77015%; height: 24px;\">string<\/td>\n<td style=\"width: 80.2284%; height: 24px;\"><em>URL to the developer page on App Store<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>version<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>current version of the app<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>minimum_os_version<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>minimum OS version required to install the app<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>size<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>size of the app<\/em>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>released_date<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>date and time when the app was released<\/em><br \/>\nin the UTC format: \u201cyyyy-mm-dd hh-mm-ss +00:00\u201d;<br \/>\nexample:<br \/>\n<code>2019-11-15 12:57:46 +00:00<\/code><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>last_update_date<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>date and time when the app was last updated<\/em><br \/>\nin the UTC format: \u201cyyyy-mm-dd hh-mm-ss +00:00\u201d;<br \/>\nexample:<br \/>\n<code>2019-11-15 12:57:46 +00:00<\/code><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>update_notes<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>update notes<\/em><br \/>\ncontains the latest update notes from the developer\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>images<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">array<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>app images<\/em><br \/>\ncontains URLs to the images published on the app page on App Store<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>similar_apps<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">array<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>similar apps<\/em><br \/>\ndisplays apps similar to the app in a POST request<\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>app_id<\/code><\/td>\n<td style=\"width: 5.77015%; height: 25px;\">string<\/td>\n<td style=\"width: 80.2284%; height: 25px;\"><i>ID of the app<\/i>\n<\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>title<\/code><\/td>\n<td style=\"width: 5.77015%; height: 25px;\">string<\/td>\n<td style=\"width: 80.2284%; height: 25px;\"><i>title of the app<\/i>\n<\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0\u00a0 \u00a0  <code>url<\/code><\/td>\n<td style=\"width: 5.77015%; height: 25px;\">string<\/td>\n<td style=\"width: 80.2284%; height: 25px;\"><i>URL to the app page on App Store<\/i>\n<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <code>more_apps_by_developer<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">array<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>similar apps<\/em><br \/>\ninformation about apps built by the same developer<\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0\u00a0 \u00a0  <code>app_id<\/code><\/td>\n<td style=\"width: 5.77015%; height: 25px;\">string<\/td>\n<td style=\"width: 80.2284%; height: 25px;\"><i>ID of the app<\/i>\n<\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0\u00a0 \u00a0  <code>title<\/code><\/td>\n<td style=\"width: 5.77015%; height: 25px;\">string<\/td>\n<td style=\"width: 80.2284%; height: 25px;\"><i>title of the app<\/i>\n<\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 24.3517%; height: 25px;\"> \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0\u00a0 \u00a0  <code>url<\/code><\/td>\n<td style=\"width: 5.77015%; height: 25px;\">string<\/td>\n<td style=\"width: 80.2284%; height: 25px;\"><i>URL to the app page on App Store<\/i>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>\u200c\u200c[\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][vc_column_text] Live Apple App Listings Search Results &nbsp; This endpoint will provide you with a list of apps published on App Store along with additional information: its ID, icon, reviews count, rating, price, and other data. The results are specific to the title, description, and categories parameters specified in the API request. [\/vc_column_text][vc_column_text]All POST data [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template.php","meta":{"footnotes":""},"_links":{"self":[{"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/pages\/17157"}],"collection":[{"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/comments?post=17157"}],"version-history":[{"count":20,"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/pages\/17157\/revisions"}],"predecessor-version":[{"id":17567,"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/pages\/17157\/revisions\/17567"}],"wp:attachment":[{"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/media?parent=17157"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}