This endpoint will provide you with a list of apps published on Google Play 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.
Instead of ‘login’ and ‘password’ use your credentials from https://app.dataforseo.com/api-access
# Instead of 'login' and 'password' use your credentials from https://app.dataforseo.com/api-access
login="login"
password="password"
cred="$(printf ${login}:${password} | base64)"
curl --location --request POST "https://api.dataforseo.com/v3/app_data/google/app_listings/search/live"
--header "Authorization: Basic ${cred}"
--header "Content-Type: application/json"
--data-raw "[
{
"title": "vpn",
"description": "vpn",
"categories": [
"Tools"
],
"order_by": ["item.installs_count,asc"],
"filters": [
["item.rating.value", ">", 4.5]
],
"limit": 10
}
]"
<?php
// You can download this file from here https://cdn.dataforseo.com/v3/examples/php/php_RestClient.zip?202197
require('RestClient.php');
$api_url = 'https://api.dataforseo.com/';
// Instead of 'login' and 'password' use your credentials from https://app.dataforseo.com/api-access
$client = new RestClient($api_url, null, 'login', 'password');
$post_array = array();
// simple way to get a result
$post_array[] = array(
"title" => "vpn",
"description" => "vpn",
"order_by" => [ "item.rating.value,asc" ],
"filters" => [
[ "item.rating.value",">",4 ]
],
"limit" => 3
);
try {
// POST /v3/app_data/google/app_listings/search/live
// POST /v3/app_data/apple/app_listings/search/live
// the full list of possible parameters is available in documentation
$result = $client->post('/v3/app_data/google/app_listings/search/live', $post_array);
print_r($result);
// do something with post result
} catch (RestClientException $e) {
echo "n";
print "HTTP code: {$e->getHttpCode()}n";
print "Error code: {$e->getCode()}n";
print "Message: {$e->getMessage()}n";
print $e->getTraceAsString();
echo "n";
}
$client = null;
?>
from client import RestClient
# You can download this file from here https://cdn.dataforseo.com/v3/examples/python/python_Client.zip
client = RestClient("login", "password")
post_data = dict()
# simple way to set a task
post_data[len(post_data)] = dict(
title="vpn",
description="vpn",
order_by=["item.rating.value,asc"],
filters=[
["item.rating.value",">",4]
],
limit=3
)
# POST /v3/app_data/google/app_listings/search/live
# POST /v3/app_data/apple/app_listings/search/live
response = client.post("/v3/app_data/google/app_listings/search/live", post_data)
# you can find the full list of the response codes here https://docs.dataforseo.com/v3/appendix/errors
if response["status_code"] == 20000:
print(response)
# do something with result
else:
print("error. Code: %d Message: %s" % (response["status_code"], response["status_message"]))
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
namespace DataForSeoDemos
{
public static partial class Demos
{
public static async Task app_data_app_listings_search_live()
{
var httpClient = new HttpClient
{
BaseAddress = new Uri("https://api.dataforseo.com/"),
// Instead of 'login' and 'password' use your credentials from https://app.dataforseo.com/api-access
DefaultRequestHeaders = { Authorization = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(Encoding.ASCII.GetBytes("login:password"))) }
};
var postData = new List<object>();
postData.Add(new
{
title = "vpn",
description = "vpn",
order_by = new[]
{
"item.rating.value,asc"
},
filters = new object[]
{
new object[] { "item.rating.value", ">", 4 }
},
limit = 3
});
// POST /v3/app_data/google/app_listings/search/live
// POST /v3/app_data/apple/app_listings/search/live
// the full list of possible parameters is available in documentation
var taskPostResponse = await httpClient.PostAsync("/v3/app_data/google/app_listings/search/live", new StringContent(JsonConvert.SerializeObject(postData)));
var result = JsonConvert.DeserializeObject<dynamic>(await taskPostResponse.Content.ReadAsStringAsync());
// you can find the full list of the response codes here https://docs.dataforseo.com/v3/appendix/errors
if (result.status_code == 20000)
{
// do something with result
Console.WriteLine(result);
}
else
Console.WriteLine($"error. Code: {result.status_code} Message: {result.status_message}");
}
}
}
The above command returns JSON structured like this:
{
"version": "0.1.20221214",
"status_code": 20000,
"status_message": "Ok.",
"time": "0.1083 sec.",
"cost": 0.11,
"tasks_count": 1,
"tasks_error": 0,
"tasks": [
{
"id": "06071830-1535-0554-0000-6717035cbeb1",
"status_code": 20000,
"status_message": "Ok.",
"time": "0.0484 sec.",
"cost": 0.11,
"result_count": 1,
"path": [
"v3",
"app_data",
"google",
"app_listings",
"search",
"live"
],
"data": {
"api": "app_data",
"function": "search",
"se": "google",
"title": "vpn",
"description": "vpn",
"categories": [
"Tools"
],
"order_by": [
"item.installs_count,asc"
],
"filters": [
[
"item.rating.value",
">",
4.5
]
],
"limit": 10
},
"result": [
{
"total_count": 284,
"count": 10,
"offset": 0,
"offset_token": "eyJDdXJyZW50T2Zmc2V0IjoxMCwiUmVxdWVzdERhdGEiOnsibG9jYXRpb24iOm51bGwsImxhbmd1YWdlIjpudWxsLCJjYXRlZ29yaWVzIjpbIlRvb2xzIl0sInRpdGxlIjoidnBuIiwiZGVzY3JpcHRpb24iOiJ2cG4iLCJzZWFyY2hfYWZ0ZXJfdG9rZW4iOm51bGwsIm9yZGVyX2J5Ijp7Im9yZGVyX2ZpZWxkIjoiaW5mby5pdGVtLmluc3RhbGxzX2NvdW50Iiwib3JkZXJfdHlwZSI6IkFzYyIsIm5leHQiOm51bGx9LCJsaW1pdCI6MTAsIm9mZnNldCI6bnVsbCwiYWlkIjpudWxsfSwiUmF3UXVlcnkiOnsiZmllbGQiOiJpdGVtLnJhdGluZy52YWx1ZSIsInR5cGUiOiJndCIsInZhbHVlIjo0LjV9LCJTZWFyY2hBZnRlckRhdGEiOls4NDAuMCwiY29tLndWUE5TaGllbGQyXzE2NjU4NTQ1Il19",
"items": [
{
"app_id": "com.safeheaven.vpn",
"se_domain": "play.google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://play.google.com/store/apps/details?id=com.safeheaven.vpn&hl=en&gl=us",
"time_update": "2023-05-23 10:45:41 +00:00",
"item": {
"type": "google_play_info_organic",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"app_id": "com.safeheaven.vpn",
"title": "SafeHaven VPN",
"url": "https://play.google.com/store/apps/details?id=com.safeheaven.vpn&hl=en&gl=us",
"icon": "https://play-lh.googleusercontent.com/asIw0wI3M2ff4tAfBwZuTiFrk0U1xWN3ZI91HlCo_MOSA49FN6jXLNJeiDcJ64OoURSR",
"description": "SafeHaven VPN is a free VPN app that offers IP redirection between 26 Premium server locations andn13 free high-speed server locations.nnSafeHaven VPN is extremely fast and reliable, with minimal speed lag during use. When you switch on SafeHaven VPN, it secures your internet traffic through a secure encrypted tunnel. It also protects your data from anyone sneaking around your network and stops ISP's from profiting from your internet activity data. Once activated, SafeHaven VPN makes it harder for anyone to track you onlinennYou can also use your VPN to "Spoof your Location."nnYou can enjoy lightning-fast speeds and the latest & greatest security protocols with unlimited proxy with the SafeHaven VPN app. You can either use this excellent app for free without any limits for a lifetime or pay a small fee to access it's VIP servers and remove in-app ads.nnIt also takes between two and three seconds to connect to a server, and switching betweennservers is a breeze. This app can also automatically select the best proxy server for you,nnParticularly for beginner VPN users.nThis app puts its best foot forward by offering a slick and easy-to-use interface that is perfect fornusers who would like a hassle-free user experience.nn✔️Why do you need a VPN?nnVPN stands for 'virtual private network' and is a piece of software that helps you stay anonymous online, encrypts your internet activities, and lets you effectively spoof your devices & ISPs into thinking that you are in another location.nnDownloading a VPN service will be all about privacy. You can use these encrypted tunnels to keep your online life completely safe from hackers, or maybe you're a keen torrenter, and you don't want to get in trouble for it. Or you want to stay invisible from the prying eyes of the government.nnThis SafeHaven VPN app is a means to secure your data online and add a privacy layer to protect yournidentitynn*Key Featuresnn✔️Lightning FastnnSafeHaven VPN is an extremely fast VPN proxy service that makes streaming, web browsing & feel like a breeze.nn✔️SecuritynnSafeHaven VPN offers a safe way to access the internet and is ideal for users who love their privacy and would like to stay anonymous online.nn✔️Unlimited ProxynnThis SafeHaven VPN app offers you to connect to servers in 13 counties for free and 26 super-fast servers for VIP users.nn✔️Fast & EasynnServers is as easy as choosing a newnlocation (no need to close the existing connection first). The app can also select the best performing server for you automatically",
"reviews_count": 10,
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 10,
"rating_max": 5
},
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": null
},
"is_free": true,
"main_category": "Tools",
"installs": "50+",
"installs_count": 91,
"developer": "SafeHaven Studios",
"developer_id": "5272861313810855615",
"developer_url": "https://play.google.com/store/apps/dev?id=5272861313810855615",
"developer_email": "sancheza0184675@gmail.com",
"developer_address": "https://play.google.com/store/apps/details?id=com.safeheaven.vpn",
"developer_website": "https://themiamihub.com",
"version": "1.0.2",
"minimum_os_version": "4.1",
"size": null,
"released_date": "2020-12-27 04:00:00 +00:00",
"last_update_date": "2020-12-27 04:00:00 +00:00",
"update_notes": null,
"images": [
"https://play-lh.googleusercontent.com/Moi0gwOheVRN8PSpPpm-C8_MjEFUe3bVpFVHA8a4iO1Z0Cr-V0lV0svAfh5dMOujQw",
"https://play-lh.googleusercontent.com/wkU-KmR-BI9AZf6ukeha_9vAFIJEfWR78tSNiOz2Bcq4CEI7WFgejHq2LWS8wh1Z8-4",
"https://play-lh.googleusercontent.com/QI134Ffn6yJv2vJysb2rPBn-6uSIKFt5AIhC5XkD9ZQZv4IVDmlXN7IYbgUkREq9cw",
"https://play-lh.googleusercontent.com/iSDr4zwJJRQd7a6lOocTgvYVB_8O6RjoYoQNd6KFTIsPbp0j_7EvFrM4HVxt_dY6wQ",
"https://play-lh.googleusercontent.com/iLdNvh_ma8qy5kYJUSZKOy2wsBOI7khtW2H7ac5LSOx4oholB2NO54f2EYwqU67-smg"
],
"videos": null,
"similar_apps": null,
"more_apps_by_developer": null,
"genres": null,
"tags": null
}
},
{
"app_id": "com.oystervpn.app",
"se_domain": "play.google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://play.google.com/store/apps/details?id=com.oystervpn.app&hl=en&gl=us",
"time_update": "2023-05-23 10:16:19 +00:00",
"item": {
"type": "google_play_info_organic",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"app_id": "com.oystervpn.app",
"title": "OysterVPN: Secure and Fast VPN",
"url": "https://play.google.com/store/apps/details?id=com.oystervpn.app&hl=en&gl=us",
"icon": "https://play-lh.googleusercontent.com/sNSk03B05Uj95KPTM5MLpOnMYElXio4sazp8oISXhwcrPJppQ95wIhHo7lUHshfsRw",
"description": "Buy VPN that protects your privacy on the internet. OysterVPN delivers the fastest VPN speed for streaming, downloading, and browsing on the web.nn🥇 #1 VPN for Privacy & StreamingnnConnect to VPN servers located in popular destinations of the world with just a tap. Download the VPN for Android and instantly hide your IP address and location on the internet through secure VPN servers.nnAccess Hulu, Amazon Prime, HBO Max, Disney Plus, and many more streaming services that are unavailable worldwide. OysterVPN’s dedicated streaming servers give you instant access to the content you love. Stream hours' worth of content with unlimited data and support for simultaneous connections.nnThe Best VPN For Privacy And SecuritynAt the core of OysterVPN are features that enhance your privacy on the web while keeping your data safe.nn✔ Security for Wi-FinOysterVPN uses AES 256-bit encryption for securing your internet traffic against online surveillance and hackers.nn✔ Protection from online surveillancenConnecting to OysterVPN hides your online activities for protection against online surveillance and data retention.nn✔ Global VPN serversnThe growing list of VPN servers includes popular destinations of the world, such as the USA, UK, Canada, and Australia.nn✔ Dedicated streaming serversnYou can stream popular movies and TV shows on Disney Plus, Hulu, Amazon Prime, Netflix, and many more services from anywhere in the world.nn✔ Anti-MalwarenOysterVPN blocks known malicious websites from loading, giving you protection against potential malware attacks.nn✔ Simultaneous connectionsnOne OysterVPN subscription lets you connect up to 5 devices simultaneously.nn✔ Zero-logs policynYour privacy is of utmost importance to us. Our zero-logs policy means that your online activities will never be tracked or recorded.nn✔ 30-day refund policynAs the best VPN for Android, OysterVPN gives you complete peace of mind through its 30-day money-back policy.nn✔ 24/7 customer supportnReal people, not bots. Our customer support team is available throughout the day to assist you.nnOysterVPN Featuresn• 122+ VPN servers in 13+ countriesn• AES 256-bit encryptionn• Zero-logs policyn• Unlimited datan• Ad-Blockern• DNS Leak Protectionn• P2P Optimized Serversn• Defeat ISP throttlingn• 20+ Device Compatibilityn• 99.99% Server Up-timen• 30-day Refund Policyn• 24/7 Customer Supportn• Support for IKEv2, OpenVPN, and LT2P/IPsec VPN protocolsnnStart today with the best VPN for Android at just $9.99 a month! Enjoy freedom on the internet with a VPN that protects your privacy.",
"reviews_count": 22,
"rating": {
"rating_type": "Max5",
"value": 4.7,
"votes_count": 22,
"rating_max": 5
},
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": null
},
"is_free": true,
"main_category": "Tools",
"installs": "100+",
"installs_count": 184,
"developer": "Oyster Digital Solutions",
"developer_id": "Oyster+Digital+Solutions",
"developer_url": "https://play.google.com/store/apps/developer?id=Oyster+Digital+Solutions",
"developer_email": "support@oystervpn.com",
"developer_address": null,
"developer_website": "https://oystervpn.com",
"version": "1.15.2",
"minimum_os_version": "5.0",
"size": null,
"released_date": "2022-07-19 03:00:00 +00:00",
"last_update_date": "2023-05-19 03:00:00 +00:00",
"update_notes": "This update includes various improvements and bug fixes",
"images": [
"https://play-lh.googleusercontent.com/fjjDGO_JoOxE7D1xahG3FCTqUxThquaOFcC5jqcFCmWahr2Xu7ea4JR0xksn9mdBnGf4",
"https://play-lh.googleusercontent.com/scwVv-0o_Rkhsjtdj1eLU1z-L3OwnpKtZ6REW1bLAEooVLBil278D3fvdMHrUFdlC06p",
"https://play-lh.googleusercontent.com/QgPKPNPe2Uz0pONmCNfxGRBnqRIXnHNtJ033xKwtOHC0N_PAVrYxrhcVS8Rc-vtWwvo",
"https://play-lh.googleusercontent.com/_rj416Vd0hrE3ZChOo-LS6RhPdxvjxqkrbzM1LghSR0RzOodqTBxmr39r19fSZzOyA",
"https://play-lh.googleusercontent.com/9MTaWkg7A8LndJSOOUs2D7qVj7SSp3KiANEL9VBdUopuCJ5tj-MuLonxev_xyWn3Lip-",
"https://play-lh.googleusercontent.com/QmGroza3EZSatWp63DGsf97e_72181fKBGcYz9Q3IxCClIDl2ZNEwf9Sadumb-PuVNc",
"https://play-lh.googleusercontent.com/T8S32LKX9D33POhSbIxpxHcU6atJTyqxLbv3h_f4hzbvveh3bUuBIy4OQREmLO81cYY",
"https://play-lh.googleusercontent.com/owJScNJ-YVS-REWnrRBGCUxyk7rLoj8z0eY4G7l55DqJn0_H_FtxUjBCUkeO0dRu3sSd",
"https://play-lh.googleusercontent.com/OxsLKgDnI3Y91NRXMihYW1POBM3q6c2edxYLXdfWROm4BN6k-1OAAj3rZbhUZb6kCSMR",
"https://play-lh.googleusercontent.com/73BDYUkZNlyUyR7gPczWIVv_b4fE70B2HJijCBN2EopL6g45v5iIvxITt8uAU78sDLE",
"https://play-lh.googleusercontent.com/YsjLOWJIIEKfvBFqskqK_wIS0IauZt_Kq0Xar4GV3y1HZMsQwQXiCU8EQb31karprQ",
"https://play-lh.googleusercontent.com/kxy0CYwN-YM0rbdpkZr5r4sMmUFU3HMuuaH1sR6aSjwGz3IHwUqTyg97TeGnAFP77WPL",
"https://play-lh.googleusercontent.com/q2_o73wfMpoD1I2h6iCWJRX0pBbOC5QUeBrwkkKyxA1CYezXHbqIhi9_jOT7sG5pIQc",
"https://play-lh.googleusercontent.com/81Gi3NJxJszLfP9zy1MrWlfDWo0iDBjYidGIPg6IXVrlIoGao3uBLvb8f0Cb14CpaQM"
],
"videos": null,
"similar_apps": [
{
"app_id": "com.hawa.supervpn",
"title": "HAWA VPN Super VPN Proxy Maste",
"url": "https://play.google.com/store/apps/details?id=com.hawa.supervpn"
},
{
"app_id": "com.trendmicro.wifiprotection.us",
"title": "VPN Proxy One Pro",
"url": "https://play.google.com/store/apps/details?id=com.trendmicro.wifiprotection.us"
},
{
"app_id": "app.ddibox.fastikev2",
"title": "Fast VPN - Secure & Fast VPN",
"url": "https://play.google.com/store/apps/details?id=app.ddibox.fastikev2"
},
{
"app_id": "com.gaditek.purevpnics",
"title": "Fast VPN and Proxy by PureVPN",
"url": "https://play.google.com/store/apps/details?id=com.gaditek.purevpnics"
},
{
"app_id": "com.clostra.newnode.vpn",
"title": "NewNode VPN",
"url": "https://play.google.com/store/apps/details?id=com.clostra.newnode.vpn"
},
{
"app_id": "app.instant_vpn.proxymaster.securevpn",
"title": "Instant VPN – Fast VPN Proxy",
"url": "https://play.google.com/store/apps/details?id=app.instant_vpn.proxymaster.securevpn"
}
],
"more_apps_by_developer": null,
"genres": null,
"tags": null
}
},
{
"app_id": "com.liberiavpn.flare",
"se_domain": "play.google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://play.google.com/store/apps/details?id=com.liberiavpn.flare&hl=en&gl=us",
"time_update": "2023-05-23 17:09:11 +00:00",
"item": {
"type": "google_play_info_organic",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"app_id": "com.liberiavpn.flare",
"title": "VPN Liberia - Get Liberia IP",
"url": "https://play.google.com/store/apps/details?id=com.liberiavpn.flare&hl=en&gl=us",
"icon": "https://play-lh.googleusercontent.com/3NutEdG746AEHxHff8afk_KdfmhEE7j7tGK_H4ugnKtaEuOk-mbdGe46k5bkNVA7Qp5B",
"description": "Liberia VPN, total free VPN service without any limitation.nnEasy to use, one click to connect to Liberia VPN server.nUnlimited bandwidth and unlimited free time.nFast servers across the world.nnLiberia VPN is the world's free VPN service that is safe to use and respects your privacy.Liberia VPN offers secure and encrypted internet access with advanced security features and access to blocked websites and streaming platforms.nnFREE Liberia VPN Features Available To ALL Users:nn1. Increases Liberia VPN speeds by up to 400% to give users an express service.n2. Unlimited data with no bandwidth or speed restrictions.n3. Strictly NO logs.n4. Full disk encrypted servers protect your data.n5. Bypass geo-restrictions - smart protocol selection automatically overcomes VPN bans and unblocks censored content. nnWhy Liberia VPN?nn-- Our network of high-speed servers in a total of 90+ countries puts you in control.n-- So you’ll never deal with buffering videos, slow downloads or timeouts due to routing hops seen with other providers.n-- Avoid malicious websites and protect your devices from malware.n-- No more pop-ups and intrusive ads, just smooth browsing.n-- We keep no activity or connection logs.n-- 24-hours Live Customer Support",
"reviews_count": 23,
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 23,
"rating_max": 5
},
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": null
},
"is_free": true,
"main_category": "Tools",
"installs": "100+",
"installs_count": 309,
"developer": "YAN MOBILE LLC",
"developer_id": "7800801482649488679",
"developer_url": "https://play.google.com/store/apps/dev?id=7800801482649488679",
"developer_email": "app@yanmobile.com",
"developer_address": "30 N Gould St. Ste 4939 Sheridan WY 82801, United States",
"developer_website": "https://www.vpnflare.net/",
"version": "1.3.0",
"minimum_os_version": "5.0",
"size": null,
"released_date": "2022-09-02 06:00:00 +00:00",
"last_update_date": "2022-10-27 06:00:00 +00:00",
"update_notes": "Added fastest servers.",
"images": [
"https://play-lh.googleusercontent.com/WT2ZNVCYgmm8dQCO8D8oPUfpi6lTMNZ8-_PL_26QV7JpVkkCU4I1501NK5s9YXV_o9xV",
"https://play-lh.googleusercontent.com/t9nBh31X7zuShisiqwC19KV3m17tS3xsNbftPT_N3uolHvlQMs3YEy0OXMaDCTHeIlRW",
"https://play-lh.googleusercontent.com/A2GxYv_jebWFNwFbmeiQINoh3A6fwq2Vwf3nHGrbCJjtoMTXQ5o7lXVWdXOhDZJkw7I",
"https://play-lh.googleusercontent.com/KvdI_0OWW4gA5nUxhTmgMYpXNiEHKXCHAoN7fTTwAWkE-jrQbRbu8pbZfIsgPy0Aog0A"
],
"videos": null,
"similar_apps": null,
"more_apps_by_developer": [
{
"app_id": "com.afghanistanvpn.flare",
"title": "VPN Afghanistan - Get AFG IP",
"url": "https://play.google.com/store/apps/details?id=com.afghanistanvpn.flare"
},
{
"app_id": "com.flarevpn",
"title": "VPN FLARE - SECURE & FAST VPN",
"url": "https://play.google.com/store/apps/details?id=com.flarevpn"
},
{
"app_id": "com.saudiarabiavpn.flare",
"title": "VPN Saudi Arabia - Get SA IP",
"url": "https://play.google.com/store/apps/details?id=com.saudiarabiavpn.flare"
},
{
"app_id": "com.argentinavpn.flare",
"title": "VPN Argentina - Get AR IP",
"url": "https://play.google.com/store/apps/details?id=com.argentinavpn.flare"
},
{
"app_id": "com.australiavpn.flare",
"title": "VPN Australia - Get AU IP",
"url": "https://play.google.com/store/apps/details?id=com.australiavpn.flare"
},
{
"app_id": "com.azerbaijanvpn.flare",
"title": "VPN Azerbaijan - Get AZE IP",
"url": "https://play.google.com/store/apps/details?id=com.azerbaijanvpn.flare"
}
],
"genres": null,
"tags": null
}
},
{
"app_id": "com.southsudanvpn.flare",
"se_domain": "play.google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://play.google.com/store/apps/details?id=com.southsudanvpn.flare&hl=en&gl=us",
"time_update": "2023-05-23 06:18:13 +00:00",
"item": {
"type": "google_play_info_organic",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"app_id": "com.southsudanvpn.flare",
"title": "VPN South Sudan - Get SSD IP",
"url": "https://play.google.com/store/apps/details?id=com.southsudanvpn.flare&hl=en&gl=us",
"icon": "https://play-lh.googleusercontent.com/G1UvmlEnRE_YKzm1F_hQYIB2ioOz7T-6AivI8k_m3Aob0rwOTgp23c75HEtjWkJnnjM",
"description": "South Sudan VPN, total free VPN service without any limitation.nnEasy to use, one click to connect to South Sudan VPN server.nUnlimited bandwidth and unlimited free time.nFast servers across the world.nnSouth Sudan VPN is the world's free VPN service that is safe to use and respects your privacy.South Sudan VPN offers secure and encrypted internet access with advanced security features and access to blocked websites and streaming platforms.nnFREE South Sudan VPN Features Available To ALL Users:nn1. Increases South Sudan VPN speeds by up to 400% to give users an express service.n2. Unlimited data with no bandwidth or speed restrictions.n3. Strictly NO logs.n4. Full disk encrypted servers protect your data.n5. Bypass geo-restrictions - smart protocol selection automatically overcomes VPN bans and unblocks censored content. nnWhy South Sudan VPN?nn-- Our network of high-speed servers in a total of 90+ countries puts you in control.n-- So you’ll never deal with buffering videos, slow downloads or timeouts due to routing hops seen with other providers.n-- Avoid South Sudancious websites and protect your devices from malware.n-- No more pop-ups and intrusive ads, just smooth browsing.n-- We keep no activity or connection logs.n-- 24-hours Live Customer Support",
"reviews_count": 25,
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 25,
"rating_max": 5
},
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": null
},
"is_free": true,
"main_category": "Tools",
"installs": "100+",
"installs_count": 496,
"developer": "YAN MOBILE LLC",
"developer_id": "7800801482649488679",
"developer_url": "https://play.google.com/store/apps/dev?id=7800801482649488679",
"developer_email": "app@yanmobile.com",
"developer_address": "30 N Gould St. Ste 4939 Sheridan WY 82801, United States",
"developer_website": "https://www.vpnflare.net/",
"version": "1.3.0",
"minimum_os_version": "5.0",
"size": null,
"released_date": "2022-09-15 03:00:00 +00:00",
"last_update_date": "2022-10-28 03:00:00 +00:00",
"update_notes": "Added fastest servers.",
"images": [
"https://play-lh.googleusercontent.com/L39cxJEUoIvEogGQIyUzV9BbfO0f5gl5qh-tgOcpqW5hAri27e2ZiaiWDZIAj-jc9LcM",
"https://play-lh.googleusercontent.com/16dnrRuYm01oO0_7Hp-yRvI-lw_HPamywDHdkx6cYbb74WFYRNZKAm1ffc8M03vYoz4",
"https://play-lh.googleusercontent.com/7BxHDvD6uelA7PmaqhlMb7Z89fAo2abHLwYbeXe4h1ESUFLCSBr65ssYbSm3PfnHSQ",
"https://play-lh.googleusercontent.com/_j7YrfpsbOMsbtAXOpAcz7_0gyMY7lV6KaltDmj7tPjN7Uplzb_O1VuknP4SfTslSg"
],
"videos": null,
"similar_apps": null,
"more_apps_by_developer": [
{
"app_id": "com.afghanistanvpn.flare",
"title": "VPN Afghanistan - Get AFG IP",
"url": "https://play.google.com/store/apps/details?id=com.afghanistanvpn.flare"
},
{
"app_id": "com.flarevpn",
"title": "VPN FLARE - SECURE & FAST VPN",
"url": "https://play.google.com/store/apps/details?id=com.flarevpn"
},
{
"app_id": "com.saudiarabiavpn.flare",
"title": "VPN Saudi Arabia - Get SA IP",
"url": "https://play.google.com/store/apps/details?id=com.saudiarabiavpn.flare"
},
{
"app_id": "com.australiavpn.flare",
"title": "VPN Australia - Get AU IP",
"url": "https://play.google.com/store/apps/details?id=com.australiavpn.flare"
},
{
"app_id": "com.argentinavpn.flare",
"title": "VPN Argentina - Get AR IP",
"url": "https://play.google.com/store/apps/details?id=com.argentinavpn.flare"
},
{
"app_id": "com.azerbaijanvpn.flare",
"title": "VPN Azerbaijan - Get AZE IP",
"url": "https://play.google.com/store/apps/details?id=com.azerbaijanvpn.flare"
}
],
"genres": null,
"tags": null
}
},
{
"app_id": "com.beninvpn.flare",
"se_domain": "play.google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://play.google.com/store/apps/details?id=com.beninvpn.flare&hl=en&gl=us",
"time_update": "2023-05-24 00:13:19 +00:00",
"item": {
"type": "google_play_info_organic",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"app_id": "com.beninvpn.flare",
"title": "VPN Benin - Get Benin IP",
"url": "https://play.google.com/store/apps/details?id=com.beninvpn.flare&hl=en&gl=us",
"icon": "https://play-lh.googleusercontent.com/h06fsWt3rEXP1EhsSYpjErzTwQoSt2ELjW9CiCijVcXvPCu3aa5egeEClg9alzbGtg",
"description": "Benin VPN, total free VPN service without any limitation.nnEasy to use, one click to connect to Benin VPN server.nUnlimited bandwidth and unlimited free time.nFast servers across the world.nnBenin VPN is the world's free VPN service that is safe to use and respects your privacy.Benin VPN offers secure and encrypted internet access with advanced security features and access to blocked websites and streaming platforms.nnFREE Benin VPN Features Available To ALL Users:nn1. Increases Benin VPN speeds by up to 400% to give users an express service.n2. Unlimited data with no bandwidth or speed restrictions.n3. Strictly NO logs.n4. Full disk encrypted servers protect your data.n5. Bypass geo-restrictions - smart protocol selection automatically overcomes VPN bans and unblocks censored content. nnWhy Benin VPN?nn-- Our network of high-speed servers in a total of 90+ countries puts you in control.n-- So you’ll never deal with buffering videos, slow downloads or timeouts due to routing hops seen with other providers.n-- Avoid Benincious websites and protect your devices from malware.n-- No more pop-ups and intrusive ads, just smooth browsing.n-- We keep no activity or connection logs.n-- 24-hours Live Customer Support",
"reviews_count": 25,
"rating": {
"rating_type": "Max5",
"value": 4.8,
"votes_count": 25,
"rating_max": 5
},
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": null
},
"is_free": true,
"main_category": "Tools",
"installs": "500+",
"installs_count": 721,
"developer": "YAN MOBILE LLC",
"developer_id": "7800801482649488679",
"developer_url": "https://play.google.com/store/apps/dev?id=7800801482649488679",
"developer_email": "app@yanmobile.com",
"developer_address": "30 N Gould St. Ste 4939 Sheridan WY 82801, United States",
"developer_website": "https://www.vpnflare.net/",
"version": "1.3.0",
"minimum_os_version": "5.0",
"size": null,
"released_date": "2022-09-15 03:00:00 +00:00",
"last_update_date": "2022-10-28 03:00:00 +00:00",
"update_notes": "Added fastest servers.",
"images": [
"https://play-lh.googleusercontent.com/d7gEbNGGeRZW8BVv3gqpwRM7z4pVVF79Ed8cGQrh694_A08lkNsnwgRX4BjtAX_7RCRI",
"https://play-lh.googleusercontent.com/9-4D6wduWhCaOYFg6EV18-H2tTJ9WQ2iY6xVEe_F4dhkOneX9QcUhCfivxdaJ3BWAJs",
"https://play-lh.googleusercontent.com/lfy8z5XouQP1hnm9UO6RVdHqE0jdF6hcn7_CrAcLT-_9fs1GO34O-bMzxQ3gVpzFIw",
"https://play-lh.googleusercontent.com/fh0G-RN9UtYg9G3JqDoBbVSQ5tODLxRicYkQuCaUpf0V34xLD0_9Qw7YNLqaO8s9rNE"
],
"videos": null,
"similar_apps": [
{
"app_id": "com.serviceonecu.serviceonecu",
"title": "Service One CU",
"url": "https://play.google.com/store/apps/details?id=com.serviceonecu.serviceonecu"
},
{
"app_id": "com.groupay",
"title": "Groupay",
"url": "https://play.google.com/store/apps/details?id=com.groupay"
},
{
"app_id": "com.expii.novid",
"title": "NOVID",
"url": "https://play.google.com/store/apps/details?id=com.expii.novid"
},
{
"app_id": "com.zaptec.zapapp",
"title": "Zaptec",
"url": "https://play.google.com/store/apps/details?id=com.zaptec.zapapp"
},
{
"app_id": "com.outeredge.app",
"title": "Outer Edge | NFT LA",
"url": "https://play.google.com/store/apps/details?id=com.outeredge.app"
},
{
"app_id": "co.dklo.mbuntu",
"title": "Mbuntu",
"url": "https://play.google.com/store/apps/details?id=co.dklo.mbuntu"
}
],
"more_apps_by_developer": [
{
"app_id": "com.afghanistanvpn.flare",
"title": "VPN Afghanistan - Get AFG IP",
"url": "https://play.google.com/store/apps/details?id=com.afghanistanvpn.flare"
},
{
"app_id": "com.flarevpn",
"title": "VPN FLARE - SECURE & FAST VPN",
"url": "https://play.google.com/store/apps/details?id=com.flarevpn"
},
{
"app_id": "com.saudiarabiavpn.flare",
"title": "VPN Saudi Arabia - Get SA IP",
"url": "https://play.google.com/store/apps/details?id=com.saudiarabiavpn.flare"
},
{
"app_id": "com.australiavpn.flare",
"title": "VPN Australia - Get AU IP",
"url": "https://play.google.com/store/apps/details?id=com.australiavpn.flare"
},
{
"app_id": "com.argentinavpn.flare",
"title": "VPN Argentina - Get AR IP",
"url": "https://play.google.com/store/apps/details?id=com.argentinavpn.flare"
},
{
"app_id": "com.azerbaijanvpn.flare",
"title": "VPN Azerbaijan - Get AZE IP",
"url": "https://play.google.com/store/apps/details?id=com.azerbaijanvpn.flare"
}
],
"genres": null,
"tags": null
}
},
{
"app_id": "com.jamaicavpn.flare",
"se_domain": "play.google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://play.google.com/store/apps/details?id=com.jamaicavpn.flare&hl=en&gl=us",
"time_update": "2023-05-23 18:28:27 +00:00",
"item": {
"type": "google_play_info_organic",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"app_id": "com.jamaicavpn.flare",
"title": "VPN Jamaica - Get Jamaica IP",
"url": "https://play.google.com/store/apps/details?id=com.jamaicavpn.flare&hl=en&gl=us",
"icon": "https://play-lh.googleusercontent.com/9iw-cZvkDkgeNQ-tlAleE1faXpvOoWPmjJ1_Jgj336jeHdagCwmVS-da-EcSxhG8kas",
"description": "Jamaica VPN, total free VPN service without any limitation.nnEasy to use, one click to connect to Jamaica VPN server.nUnlimited bandwidth and unlimited free time.nFast servers across the world.nnJamaica VPN is the world's free VPN service that is safe to use and respects your privacy.Jamaica VPN offers secure and encrypted internet access with advanced security features and access to blocked websites and streaming platforms.nnFREE Jamaica VPN Features Available To ALL Users:nn1. Increases Jamaica VPN speeds by up to 400% to give users an express service.n2. Unlimited data with no bandwidth or speed restrictions.n3. Strictly NO logs.n4. Full disk encrypted servers protect your data.n5. Bypass geo-restrictions - smart protocol selection automatically overcomes VPN bans and unblocks censored content. nnWhy Jamaica VPN?nn-- Our network of high-speed servers in a total of 90+ countries puts you in control.n-- So you’ll never deal with buffering videos, slow downloads or timeouts due to routing hops seen with other providers.n-- Avoid Jamaicacious websites and protect your devices from malware.n-- No more pop-ups and intrusive ads, just smooth browsing.n-- We keep no activity or connection logs.n-- 24-hours Live Customer Support",
"reviews_count": 25,
"rating": {
"rating_type": "Max5",
"value": 4.7,
"votes_count": 25,
"rating_max": 5
},
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": null
},
"is_free": true,
"main_category": "Tools",
"installs": "500+",
"installs_count": 743,
"developer": "YAN MOBILE LLC",
"developer_id": "7800801482649488679",
"developer_url": "https://play.google.com/store/apps/dev?id=7800801482649488679",
"developer_email": "app@yanmobile.com",
"developer_address": "30 N Gould St. Ste 4939 Sheridan WY 82801, United States",
"developer_website": "https://www.vpnflare.net/",
"version": "1.3.0",
"minimum_os_version": "5.0",
"size": null,
"released_date": "2022-09-16 06:00:00 +00:00",
"last_update_date": "2022-10-28 06:00:00 +00:00",
"update_notes": "Added fastest servers.",
"images": [
"https://play-lh.googleusercontent.com/Edb0iVGp4Yw6wyP2Kv1ndwK92E56G4Ms1Ayw7LwEm8UMxJKAsRgVSPIVukqCO_4F6qj6",
"https://play-lh.googleusercontent.com/u09xnNw1n7p-GM6n8rMqsjBW04T7na1AUB5YBhp28Ng8t18j8W0iK6cihwRTX04HhNm6",
"https://play-lh.googleusercontent.com/0Fq3Nn12F85QDL6X7QGXSwa7X496i8bBoDrmZXj0XsOZhhRSNjrfr3CzNsu3LGKNKx4",
"https://play-lh.googleusercontent.com/nFVfeZFRpndIRkr8HdNjM1tfpfA0u1i3f5YgMXmmGFBVQ1TegSGPJuCuoJPRBT7lKr8"
],
"videos": null,
"similar_apps": null,
"more_apps_by_developer": [
{
"app_id": "com.afghanistanvpn.flare",
"title": "VPN Afghanistan - Get AFG IP",
"url": "https://play.google.com/store/apps/details?id=com.afghanistanvpn.flare"
},
{
"app_id": "com.flarevpn",
"title": "VPN FLARE - SECURE & FAST VPN",
"url": "https://play.google.com/store/apps/details?id=com.flarevpn"
},
{
"app_id": "com.saudiarabiavpn.flare",
"title": "VPN Saudi Arabia - Get SA IP",
"url": "https://play.google.com/store/apps/details?id=com.saudiarabiavpn.flare"
},
{
"app_id": "com.argentinavpn.flare",
"title": "VPN Argentina - Get AR IP",
"url": "https://play.google.com/store/apps/details?id=com.argentinavpn.flare"
},
{
"app_id": "com.australiavpn.flare",
"title": "VPN Australia - Get AU IP",
"url": "https://play.google.com/store/apps/details?id=com.australiavpn.flare"
},
{
"app_id": "com.azerbaijanvpn.flare",
"title": "VPN Azerbaijan - Get AZE IP",
"url": "https://play.google.com/store/apps/details?id=com.azerbaijanvpn.flare"
}
],
"genres": null,
"tags": null
}
},
{
"app_id": "com.haitivpn.flare",
"se_domain": "play.google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://play.google.com/store/apps/details?id=com.haitivpn.flare&hl=en&gl=us",
"time_update": "2023-05-23 20:17:28 +00:00",
"item": {
"type": "google_play_info_organic",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"app_id": "com.haitivpn.flare",
"title": "VPN Haiti - Get Haiti IP",
"url": "https://play.google.com/store/apps/details?id=com.haitivpn.flare&hl=en&gl=us",
"icon": "https://play-lh.googleusercontent.com/_8uXoI9yTgawDa0j1jshChA3JerLPlmzqgAi4GPAUX296IhtOrOhxHicTiOtkWwMEC5r",
"description": "Haiti VPN, total free VPN service without any limitation.nnEasy to use, one click to connect to Haiti VPN server.nUnlimited bandwidth and unlimited free time.nFast servers across the world.nnHaiti VPN is the world's free VPN service that is safe to use and respects your privacy.Haiti VPN offers secure and encrypted internet access with advanced security features and access to blocked websites and streaming platforms.nnFREE Haiti VPN Features Available To ALL Users:nn1. Increases Haiti VPN speeds by up to 400% to give users an express service.n2. Unlimited data with no bandwidth or speed restrictions.n3. Strictly NO logs.n4. Full disk encrypted servers protect your data.n5. Bypass geo-restrictions - smart protocol selection automatically overcomes VPN bans and unblocks censored content. nnWhy Haiti VPN?nn-- Our network of high-speed servers in a total of 90+ countries puts you in control.n-- So you’ll never deal with buffering videos, slow downloads or timeouts due to routing hops seen with other providers.n-- Avoid Haiticious websites and protect your devices from malware.n-- No more pop-ups and intrusive ads, just smooth browsing.n-- We keep no activity or connection logs.n-- 24-hours Live Customer Support",
"reviews_count": 27,
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 27,
"rating_max": 5
},
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": null
},
"is_free": true,
"main_category": "Tools",
"installs": "500+",
"installs_count": 771,
"developer": "YAN MOBILE LLC",
"developer_id": "7800801482649488679",
"developer_url": "https://play.google.com/store/apps/dev?id=7800801482649488679",
"developer_email": "app@yanmobile.com",
"developer_address": "30 N Gould St. Ste 4939 Sheridan WY 82801, United States",
"developer_website": "https://www.vpnflare.net/",
"version": "1.3.0",
"minimum_os_version": "5.0",
"size": null,
"released_date": "2022-09-15 06:00:00 +00:00",
"last_update_date": "2022-10-28 06:00:00 +00:00",
"update_notes": "Added fastest servers.",
"images": [
"https://play-lh.googleusercontent.com/b2sL7snCKsCapAAAF_nUs_v2FOJU0OdQ5FY3LbmwDrYt3JAL44l65R_5l1YfNsc3Dg",
"https://play-lh.googleusercontent.com/s5E6Ra1NP05DLDjIEs7hT4kZzts5ACrK9WV-x9IfQX6i9UOwV0pWRA2_hqwhMPLjKH79",
"https://play-lh.googleusercontent.com/qFkO_3FArLgzcP-bWGkfXAabI92cOG04mfCOae8c5M2WMORvKY-IcbeMaEHDmAQHoVk",
"https://play-lh.googleusercontent.com/8LvmP833eMEi1r4AkB0IjkWQqU5af4N1ECIo2uYr0y-RukQVb-Fy-hMWJGqOJlGcHSAE"
],
"videos": null,
"similar_apps": null,
"more_apps_by_developer": [
{
"app_id": "com.afghanistanvpn.flare",
"title": "VPN Afghanistan - Get AFG IP",
"url": "https://play.google.com/store/apps/details?id=com.afghanistanvpn.flare"
},
{
"app_id": "com.flarevpn",
"title": "VPN FLARE - SECURE & FAST VPN",
"url": "https://play.google.com/store/apps/details?id=com.flarevpn"
},
{
"app_id": "com.saudiarabiavpn.flare",
"title": "VPN Saudi Arabia - Get SA IP",
"url": "https://play.google.com/store/apps/details?id=com.saudiarabiavpn.flare"
},
{
"app_id": "com.australiavpn.flare",
"title": "VPN Australia - Get AU IP",
"url": "https://play.google.com/store/apps/details?id=com.australiavpn.flare"
},
{
"app_id": "com.argentinavpn.flare",
"title": "VPN Argentina - Get AR IP",
"url": "https://play.google.com/store/apps/details?id=com.argentinavpn.flare"
},
{
"app_id": "com.azerbaijanvpn.flare",
"title": "VPN Azerbaijan - Get AZE IP",
"url": "https://play.google.com/store/apps/details?id=com.azerbaijanvpn.flare"
}
],
"genres": null,
"tags": null
}
},
{
"app_id": "com.monacovpn.flare",
"se_domain": "play.google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://play.google.com/store/apps/details?id=com.monacovpn.flare&hl=en&gl=us",
"time_update": "2023-05-23 12:12:43 +00:00",
"item": {
"type": "google_play_info_organic",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"app_id": "com.monacovpn.flare",
"title": "VPN Monaco - Get Monaco IP",
"url": "https://play.google.com/store/apps/details?id=com.monacovpn.flare&hl=en&gl=us",
"icon": "https://play-lh.googleusercontent.com/Mb8M6C_Wi8-4jBEGtH7wjqCZvetWnPTgh1aFqmgdC7d6P3dA1mlR810E8upExHYB03g",
"description": "Monaco VPN, total free VPN service without any limitation.nnEasy to use, one click to connect to Monaco VPN server.nUnlimited bandwidth and unlimited free time.nFast servers across the world.nnMonaco VPN is the world's free VPN service that is safe to use and respects your privacy.Monaco VPN offers secure and encrypted internet access with advanced security features and access to blocked websites and streaming platforms.nnFREE Monaco VPN Features Available To ALL Users:nn1. Increases Monaco VPN speeds by up to 400% to give users an express service.n2. Unlimited data with no bandwidth or speed restrictions.n3. Strictly NO logs.n4. Full disk encrypted servers protect your data.n5. Bypass geo-restrictions - smart protocol selection automatically overcomes VPN bans and unblocks censored content. nnWhy Monaco VPN?nn-- Our network of high-speed servers in a total of 90+ countries puts you in control.n-- So you’ll never deal with buffering videos, slow downloads or timeouts due to routing hops seen with other providers.n-- Avoid malicious websites and protect your devices from malware.n-- No more pop-ups and intrusive ads, just smooth browsing.n-- We keep no activity or connection logs.n-- 24-hours Live Customer Support",
"reviews_count": 23,
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 23,
"rating_max": 5
},
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": null
},
"is_free": true,
"main_category": "Tools",
"installs": "500+",
"installs_count": 804,
"developer": "YAN MOBILE LLC",
"developer_id": "7800801482649488679",
"developer_url": "https://play.google.com/store/apps/dev?id=7800801482649488679",
"developer_email": "app@yanmobile.com",
"developer_address": "30 N Gould St. Ste 4939 Sheridan WY 82801, United States",
"developer_website": "https://monacovpn.com/",
"version": "1.3.0",
"minimum_os_version": "5.0",
"size": null,
"released_date": "2022-09-16 03:00:00 +00:00",
"last_update_date": "2022-10-28 03:00:00 +00:00",
"update_notes": "Added fastest servers.",
"images": [
"https://play-lh.googleusercontent.com/8UOk-CUEEcAmMoC1Et-yu6huW7y2wgrAfL7sY8TKbpnvT5VO9JAqle90ewAACPMJHcQ",
"https://play-lh.googleusercontent.com/LBVEl0da8j00gBTF3UQEBk-fYR-AVstOsN89vSm9pOJ1msejzr1rIPtvq1tnCYksJmI",
"https://play-lh.googleusercontent.com/11YuiXXqaITGB33yiTsiQVI9UaqqGyuP-NyoyT-Egk7erCOLo7Jz-8Lue8GMhNEznQ",
"https://play-lh.googleusercontent.com/uCe79qDkfSe_C9RiyjrRZGURvT2P8CmVCks5_g6APwMr2ZSTfuTALEEyA_Iv4DfBOA"
],
"videos": null,
"similar_apps": null,
"more_apps_by_developer": [
{
"app_id": "com.afghanistanvpn.flare",
"title": "VPN Afghanistan - Get AFG IP",
"url": "https://play.google.com/store/apps/details?id=com.afghanistanvpn.flare"
},
{
"app_id": "com.flarevpn",
"title": "VPN FLARE - SECURE & FAST VPN",
"url": "https://play.google.com/store/apps/details?id=com.flarevpn"
},
{
"app_id": "com.saudiarabiavpn.flare",
"title": "VPN Saudi Arabia - Get SA IP",
"url": "https://play.google.com/store/apps/details?id=com.saudiarabiavpn.flare"
},
{
"app_id": "com.australiavpn.flare",
"title": "VPN Australia - Get AU IP",
"url": "https://play.google.com/store/apps/details?id=com.australiavpn.flare"
},
{
"app_id": "com.azerbaijanvpn.flare",
"title": "VPN Azerbaijan - Get AZE IP",
"url": "https://play.google.com/store/apps/details?id=com.azerbaijanvpn.flare"
},
{
"app_id": "com.argentinavpn.flare",
"title": "VPN Argentina - Get AR IP",
"url": "https://play.google.com/store/apps/details?id=com.argentinavpn.flare"
}
],
"genres": null,
"tags": null
}
},
{
"app_id": "com.sloveniavpn.flare",
"se_domain": "play.google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://play.google.com/store/apps/details?id=com.sloveniavpn.flare&hl=en&gl=us",
"time_update": "2023-05-23 09:42:24 +00:00",
"item": {
"type": "google_play_info_organic",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"app_id": "com.sloveniavpn.flare",
"title": "VPN Slovenia - Get Slovenia IP",
"url": "https://play.google.com/store/apps/details?id=com.sloveniavpn.flare&hl=en&gl=us",
"icon": "https://play-lh.googleusercontent.com/tbjhmdheQ78h31czf6-uoqZgVOuHCki-6WcQAXrzLnNcFh3_agqLnr5u5sqAjz6nOwQ",
"description": "Slovenia VPN, total free VPN service without any limitation.nnEasy to use, one click to connect to Slovenia VPN server.nUnlimited bandwidth and unlimited free time.nFast servers across the world.nnSlovenia VPN is the world's free VPN service that is safe to use and respects your privacy.Slovenia VPN offers secure and encrypted internet access with advanced security features and access to blocked websites and streaming platforms.nnFREE Slovenia VPN Features Available To ALL Users:nn1. Increases Slovenia VPN speeds by up to 400% to give users an express service.n2. Unlimited data with no bandwidth or speed restrictions.n3. Strictly NO logs.n4. Full disk encrypted servers protect your data.n5. Bypass geo-restrictions - smart protocol selection automatically overcomes VPN bans and unblocks censored content. nnWhy Slovenia VPN?nn-- Our network of high-speed servers in a total of 90+ countries puts you in control.n-- So you’ll never deal with buffering videos, slow downloads or timeouts due to routing hops seen with other providers.n-- Avoid malicious websites and protect your devices from malware.n-- No more pop-ups and intrusive ads, just smooth browsing.n-- We keep no activity or connection logs.n-- 24-hours Live Customer Support",
"reviews_count": 31,
"rating": {
"rating_type": "Max5",
"value": 5,
"votes_count": 31,
"rating_max": 5
},
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": null
},
"is_free": true,
"main_category": "Tools",
"installs": "500+",
"installs_count": 812,
"developer": "YAN MOBILE LLC",
"developer_id": "7800801482649488679",
"developer_url": "https://play.google.com/store/apps/dev?id=7800801482649488679",
"developer_email": "app@yanmobile.com",
"developer_address": "30 N Gould St. Ste 4939 Sheridan WY 82801, United States",
"developer_website": "https://vpnflare.net/",
"version": "1.3.0",
"minimum_os_version": "5.0",
"size": null,
"released_date": "2022-09-01 06:00:00 +00:00",
"last_update_date": "2022-10-27 06:00:00 +00:00",
"update_notes": "Added fastest server.",
"images": [
"https://play-lh.googleusercontent.com/EDDNZYW8DLedNMVTkU_ga2glgFhWDT8rXgTishbPGW7z1KZ4HUfyFscs9DQqD2S0KKY",
"https://play-lh.googleusercontent.com/9uTiMicWkUlITm5wIW4yql9swMnv9XGmNAlHHLZwSvvLqJRevd0_wuFj1qbctpaTjD0",
"https://play-lh.googleusercontent.com/FLTpETflJKtIpY8drmPucSIQ_JlCVKPTBTlfjL7AZAg9p3MYiGA_gMy9zErd3NAuzWw",
"https://play-lh.googleusercontent.com/o5J98HvgdYXKrVrzh62sYpH5nq_bhHSTcOBsMTysFq91ZeNNXhhYrXH2loktixuAdA"
],
"videos": null,
"similar_apps": null,
"more_apps_by_developer": [
{
"app_id": "com.afghanistanvpn.flare",
"title": "VPN Afghanistan - Get AFG IP",
"url": "https://play.google.com/store/apps/details?id=com.afghanistanvpn.flare"
},
{
"app_id": "com.flarevpn",
"title": "VPN FLARE - SECURE & FAST VPN",
"url": "https://play.google.com/store/apps/details?id=com.flarevpn"
},
{
"app_id": "com.saudiarabiavpn.flare",
"title": "VPN Saudi Arabia - Get SA IP",
"url": "https://play.google.com/store/apps/details?id=com.saudiarabiavpn.flare"
},
{
"app_id": "com.australiavpn.flare",
"title": "VPN Australia - Get AU IP",
"url": "https://play.google.com/store/apps/details?id=com.australiavpn.flare"
},
{
"app_id": "com.argentinavpn.flare",
"title": "VPN Argentina - Get AR IP",
"url": "https://play.google.com/store/apps/details?id=com.argentinavpn.flare"
},
{
"app_id": "com.azerbaijanvpn.flare",
"title": "VPN Azerbaijan - Get AZE IP",
"url": "https://play.google.com/store/apps/details?id=com.azerbaijanvpn.flare"
}
],
"genres": null,
"tags": null
}
},
{
"app_id": "com.wVPNShield2_16658545",
"se_domain": "play.google.com",
"location_code": 2840,
"language_code": "en",
"check_url": "https://play.google.com/store/apps/details?id=com.wVPNShield2_16658545&hl=en&gl=us",
"time_update": "2023-05-23 02:46:21 +00:00",
"item": {
"type": "google_play_info_organic",
"rank_group": 1,
"rank_absolute": 1,
"position": "left",
"app_id": "com.wVPNShield2_16658545",
"title": "VPN Shield",
"url": "https://play.google.com/store/apps/details?id=com.wVPNShield2_16658545&hl=en&gl=us",
"icon": "https://play-lh.googleusercontent.com/VOO0IGaXCdT0n2_Yn6idu4HzkEQ8R7JcB9MuNdZmtkcq_ZPHlXgBlaAbRvvdThIvKg",
"description": "VPN Shield is a completely free VPN service designed to provide users with a fast, unlimited, and secure connection for all their online activities. It is available for download on both Android and iOS smartphones, making it a convenient and accessible option for users on-the-go. With VPN Shield, you can browse the web, stream your favorite content, and work remotely without any concerns about your privacy and security.nnOne of the standout features of VPN Shield is its unlimited data usage, which allows you to stay connected to the internet without worrying about data caps or overage charges. It also offers fast speeds, ensuring that you can access content quickly and without interruption.nnSetting up VPN Shield is a straightforward process that only requires a few taps on your phone. The app is user-friendly, and its simple interface makes it easy to navigate.nnIn summary, VPN Shield is a completely free VPN service that offers fast, unlimited, and secure connections for all your online activities. It's a convenient option for those who are constantly on their phones and looking to protect their privacy and security while browsing the internet.",
"reviews_count": 15,
"rating": {
"rating_type": "Max5",
"value": 4.8,
"votes_count": 15,
"rating_max": 5
},
"price": {
"current": 0,
"regular": null,
"max_value": null,
"currency": "USD",
"is_price_range": false,
"displayed_price": null
},
"is_free": true,
"main_category": "Tools",
"installs": "500+",
"installs_count": 840,
"developer": "Fresh Apps Daily",
"developer_id": "7464196958498755305",
"developer_url": "https://play.google.com/store/apps/dev?id=7464196958498755305",
"developer_email": "desp03amal@gmail.com",
"developer_address": null,
"developer_website": "https://app16658545.appsgeyser.com/",
"version": "1.0.1",
"minimum_os_version": "5.0",
"size": null,
"released_date": "2023-02-20 02:00:00 +00:00",
"last_update_date": "2023-02-20 02:00:00 +00:00",
"update_notes": "VPN Shield 1.0.1",
"images": [
"https://play-lh.googleusercontent.com/jl3Iq5g9H-aJAYSY5_BLstvTIMbmAryvOLCadHWgcuvgna8u9W9G6W9XOGTqAuOjLhk",
"https://play-lh.googleusercontent.com/IXNcBMVhmle4gIzOQ8d8ZnzFIFsYNhgyYtQjZ6D1kwpYRtC9_Z0xt88K9_tptPOpQjJv",
"https://play-lh.googleusercontent.com/5T8svYHnKZVMABD2Fjwxkri8AcEFOchfpqhluAiFcAkPCjj9_FY9IyDJKsdLr1bRXHs",
"https://play-lh.googleusercontent.com/Rh9rxaICGFJsofSjQ5eWnyE0PKEdeHXZENMjhRKT6cdsPmiapIv4UAtp09nR0sq-KaA",
"https://play-lh.googleusercontent.com/nZchwASkXpWJJ7t40qQHjoUbQyeAvg5sXaRH11CSM6wlUdS-Ncr4CoHUaD1R6lcINQ",
"https://play-lh.googleusercontent.com/SqG6TFyZ07T8daMd_s-Zs_qs3XdSC5MdspzNpq9lV1VhWvdK_v1jLme0INrg3dNDzBc",
"https://play-lh.googleusercontent.com/oPoQe9w_U8kRbwW60n0qw_7vFKLJlSoJUtg7_OkXMvHDAt_nXer3wmglP9pHzstWn1g",
"https://play-lh.googleusercontent.com/QVGDggZsVTNmqXQISdGf3BglGBbPTGjqg-6W2aG_Fz_0rvb9RSrlAhK18qZy-NBH9_2y"
],
"videos": null,
"similar_apps": [
{
"app_id": "com.nortvpn.vpnmaster",
"title": "katana VPN : secure & fast",
"url": "https://play.google.com/store/apps/details?id=com.nortvpn.vpnmaster"
},
{
"app_id": "app.instant_vpn.proxymaster.securevpn",
"title": "Instant VPN – Fast VPN Proxy",
"url": "https://play.google.com/store/apps/details?id=app.instant_vpn.proxymaster.securevpn"
},
{
"app_id": "com.clostra.newnode.vpn",
"title": "NewNode VPN",
"url": "https://play.google.com/store/apps/details?id=com.clostra.newnode.vpn"
}
],
"more_apps_by_developer": [
{
"app_id": "com.wKPopWordSearch_16674236",
"title": "K-Pop Word Search: Find Faves!",
"url": "https://play.google.com/store/apps/details?id=com.wKPopWordSearch_16674236"
},
{
"app_id": "com.wAshWednesdayWordSearch_16668841",
"title": "Ash Wednesday Word Search",
"url": "https://play.google.com/store/apps/details?id=com.wAshWednesdayWordSearch_16668841"
},
{
"app_id": "com.wChatWave3_16635508",
"title": "ChatWave",
"url": "https://play.google.com/store/apps/details?id=com.wChatWave3_16635508"
},
{
"app_id": "com.HUGO.CollectQuickly",
"title": "Collect Quickly",
"url": "https://play.google.com/store/apps/details?id=com.HUGO.CollectQuickly"
}
],
"genres": null,
"tags": null
}
}
]
}
]
}
]
}
All POST data should be sent in the JSON 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.
Below you will find a detailed description of the fields you can use for setting a task.
Description of the fields for setting a task:
Field name
Type
Description
categories
array
app categories
optional field
the categories you specify are used to search for app listings;
you can get the full list of available app listing categories by this link
you can specify up to 10 categories
description
string
keyword in the app’s description
optional field
keywords that occur in the description of the app;
can contain up to 200 characters
title
string
keyword in the app’s title
optional field
keywords that occur in the title of the app;
can contain up to 200 characters
filters
array
array of results filtering parameters
optional field you can add several filters at once (8 filters maximum)
you should set a logical operator and, or between the conditions
the following operators are supported: regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like, not_like
you can use the % operator with like and not_like to match any string of zero or more characters
example: ["item.rating.value",">",3]
you can receive the list of available filters by making a separate request to https://api.dataforseo.com/v3/app_data/google/app_listings/available_filters
order_by
array
results sorting rules
optional field
you can use the same values as in the filters array to sort the results
possible sorting types: asc – results will be sorted in the ascending order desc – results will be sorted in the descending order
you should use a comma to set up a sorting parameter
example: ["item.installs_count,asc"]
note that you can set no more than three sorting rules in a single request
you should use a comma to separate several sorting rules
example: ["item.rating.value,desc","item.installs_count,asc"]
limit
integer
the maximum number of returned apps
optional field
default value: 100
maximum value: 1000
offset
integer
offset in the results array of returned apps
optional field
default value: 0
if you specify the 10 value, the first ten entities in the results array will be omitted and the data will be provided for the successive entities
offset_token
string
token for subsequent requests
optional field
provided in the identical filed of the response to each request;
use this parameter to avoid timeouts while trying to obtain over 100,000 results in a single request;
by specifying the unique offset_token value from the response array, you will get the subsequent results of the initial task; offset_token values are unique for each subsequent task Note: if the offset_token is specified in the request, all other parameters should be identical to the previous request
tag
string
user-defined task identifier
optional field the character limit is 255
you can use this parameter to identify the task and match it with the result
you will find the specified tag value in the data object of the response
As a response of the API server, you will receive JSON-encoded data containing a tasks array with the information specific to the set tasks.
Description of the fields in the results array:
Field name
Type
Description
version
string
the current version of the API
status_code
integer
general status code
you can find the full list of the response codes here Note: we strongly recommend designing a necessary system for handling related exceptional or error conditions
status_message
string
general informational message
you can find the full list of general informational messages here
time
string
execution time, seconds
cost
float
total tasks cost, USD
tasks_count
integer
the number of tasks in the tasks array
tasks_error
integer
the number of tasks in the tasks array that were returned an error
tasks
array
array of tasks
id
string
task identifier unique task identifier in our system in the UUID format
status_code
integer
status code of the task
generated by DataForSEO; can be within the following range: 10000-60000
you can find the full list of the response codes here
status_message
string
informational message of the task
you can find the full list of general informational messages here
time
string
execution time, seconds
cost
float
cost of the task, USD
result_count
integer
number of elements in the result array
path
array
URL path
data
object
contains the same parameters that you specified in the POST request
result
array
array of results
total_count
integer
the total number of relevant results in the database
count
integer
the number of items in the results array
offset
integer
offset in the results array of returned apps
offset_token
string
token for subsequent requests
you can use this parameter in the POST request to avoid timeouts while trying to obtain over 100,000 results in a single request
items
array
array of apps and related data
app_id
string
ID of the returned app
se_domain
string
search engine domain in a POST array
location_code
integer
location code in a POST array
language_code
string
language code in a POST array
check_url
string
direct URL to search engine results
you can use it to make sure that we provided accurate results
time_update
string
date and time when SERP data was last updated
in the ISO 8601 format: “YYYY-MM-DDThh:mm:ss.sssssssZ”
example: 2023-05-23 10:16:19 +00:00
item
object
detailed information about the app
type
string
the item’s type
possible item types: "google_play_info_organic"
rank_group
integer
position within a group of elements with identical type values
positions of elements with different type values are omitted from rank_group
rank_absolute
integer
absolute rank among all the listed apps
absolute position among all apps on the list
position
string
the alignment of the element in SERP
can take the following values: left
app_id
string
ID of the returned app
title
string
title of the returned app
url
string
URL to the app page on Google Play
icon
string
URL to the app icon
description
string
description of the returned app
reviews_count
integer
the total number of reviews the app has
rating
object
average rating of the app
rating_type
string
the type of the rating
can take the following values: Max5
value
float
the value of the rating
votes_count
integer
the amount of feedback
in this case, the value will be null
rating_max
integer
the maximum value for a rating_type
the maximum value for Max5 is 5
price
object
price of the app
current
float
current price
refers to the current price indicated in the element
regular
float
regular price
refers to the regular price indicated in the element
max_value
float
the maximum price
refers to the maximum price indicated in the element
currency
string
currency of the listed price
ISO code of the currency applied to the price
is_price_range
boolean
price is provided as a range
indicates whether a price is provided in a range
displayed_price
string
price string in the result
raw price string as provided in the result
is_free
boolean
indicates whether the app is free
main_category
string
app category
Google Play category relevant to the app
installs
string
approximate number of app installs
installs_count
integer
accurate number of app installs
developer
string
name of the app developer
developer_id
string
ID of the developer on Google Play
developer_url
string
URL to the developer page on Google Play
developer_email
string
email address of the developer
developer_address
string
physical address of the developer
developer_website
string
official website of the developer
version
string
current version of the app
minimum_os_version
string
minimum OS version required to install the app
size
string
size of the app
released_date
string
date and time when the app was released
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”;
example: 2019-11-15 12:57:46 +00:00
last_update_date
string
date and time when the app was last updated
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”;
example: 2019-11-15 12:57:46 +00:00
update_notes
string
update notes
contains the latest update notes from the developer
images
array
app images
contains URLs to the images published on the app page on Google Play
videos
array
app videos
contains URLs to the video published on the app page on Google Play
similar_apps
array
similar apps
displays apps similar to the app in a POST request
app_id
string
ID of the app
title
string
title of the app
url
string
URL to the app page on Google Play
more_apps_by_developer
array
similar apps
information about apps built by the same developer