Setting Live ‘Clickstream Global Search Volume’ Tasks
The Clickstream Global Search Volume endpoint of DataForSEO Keywords Data API is designed to provide clickstream-based search volume data for up to 1000 keywords in a single Live request. What’s more, it offers geographical distribution of clickstream search volume values across all available locations.
You can learn more about this endpoint in this Help Center article .
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 "https://api.dataforseo.com/v3/keywords_data/clickstream_data/global_search_volume/live"
--header "Authorization: Basic c3VwcG9ydEBkYXRhZm9yc2VvLmNvbTpTUnJYVHp2UGtFSjgzdXlz"
--header "Content-Type: application/json"
--data-raw "[
{
"tag": "test-tag",
"keywords": [
"you tube",
"youtube",
"youtub"
]
}
]"
<?php
// You can download this file from here https://cdn.dataforseo.com/v3/examples/php/php_RestClient.zip
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 set a task
$post_array[] = array(
"keywords" => array(
"you tube",
"youtube",
"youtub"
)
);
try {
// POST /v3/keywords_data/clickstream_data/global_search_volume/live
// the full list of possible parameters is available in documentation
$result = $client->post('/v3/keywords_data/clickstream_data/global_search_volume/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(
keywords=[
"you tube",
"youtube",
"youtub"
]
)
# POST /v3/keywords_data/clickstream_data/global_search_volume/live
# the full list of possible parameters is available in documentation
response = client.post("/v3/keywords_data/clickstream_data/global_search_volume/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"]))
const post_array = [];
post_array.push( {
"tag": "test-tag",
"keywords": [
"you tube",
"youtube",
"youtub"
]
});
const axios = require('axios');
axios({
method: 'post',
url: 'https://api.dataforseo.com/v3/keywords_data/clickstream_data/global_search_volume/live',
auth: {
username: 'login',
password: 'password'
},
data: post_array,
headers: {
'content-type': 'application/json'
}
}).then(function (response) {
var result = response['data']['tasks'];
// Result data
console.log(result);
}).catch(function (error) {
console.log(error);
});
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 keywords_data_clickstream_global_search_volume_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
{
keywords = new[]
{
"you tube",
"youtube",
"youtub"
}
});
// POST /v3/keywords_data/clickstream_data/global_search_volume/live
// the full list of possible parameters is available in documentation
var taskPostResponse = await httpClient.PostAsync("/v3/keywords_data/clickstream_data/global_search_volume/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.20240801",
"status_code": 20000,
"status_message": "Ok.",
"time": "0.8803 sec.",
"cost": 0.15,
"tasks_count": 1,
"tasks_error": 0,
"tasks": [
{
"id": "08211503-1535-0592-0000-e78bc7d72d65",
"status_code": 20000,
"status_message": "Ok.",
"time": "0.8194 sec.",
"cost": 0.15,
"result_count": 1,
"path": [
"v3",
"keywords_data",
"clickstream_data",
"global_search_volume",
"live"
],
"data": {
"api": "keywords_data",
"function": "global_search_volume",
"se": "clickstream_data",
"tag": "test-tag",
"keywords": [
"you tube",
"youtube",
"youtub"
]
},
"result": [
{
"items_count": 3,
"items": [
{
"keyword": "youtube",
"search_volume": 976222640,
"country_distribution": [
{
"country_iso_code": "US",
"search_volume": 145773557,
"percentage": 14.93241
},
{
"country_iso_code": "IN",
"search_volume": 84475722,
"percentage": 8.65333
},
{
"country_iso_code": "TR",
"search_volume": 64240714,
"percentage": 6.58054
},
{
"country_iso_code": "DE",
"search_volume": 53117168,
"percentage": 5.44109
},
{
"country_iso_code": "GB",
"search_volume": 44061136,
"percentage": 4.51343
},
{
"country_iso_code": "FR",
"search_volume": 42023272,
"percentage": 4.30468
},
{
"country_iso_code": "BR",
"search_volume": 41336696,
"percentage": 4.23435
},
{
"country_iso_code": "ID",
"search_volume": 31882133,
"percentage": 3.26587
},
{
"country_iso_code": "MX",
"search_volume": 31089408,
"percentage": 3.18466
},
{
"country_iso_code": "JP",
"search_volume": 30030698,
"percentage": 3.07621
},
{
"country_iso_code": "IT",
"search_volume": 25501714,
"percentage": 2.61228
},
{
"country_iso_code": "ES",
"search_volume": 24576528,
"percentage": 2.51751
},
{
"country_iso_code": "VN",
"search_volume": 20821525,
"percentage": 2.13287
},
{
"country_iso_code": "PL",
"search_volume": 19390324,
"percentage": 1.98626
},
{
"country_iso_code": "CA",
"search_volume": 17183945,
"percentage": 1.76025
},
{
"country_iso_code": "TH",
"search_volume": 14191845,
"percentage": 1.45375
},
{
"country_iso_code": "AU",
"search_volume": 13904230,
"percentage": 1.42429
},
{
"country_iso_code": "CO",
"search_volume": 13341382,
"percentage": 1.36663
},
{
"country_iso_code": "PH",
"search_volume": 13297310,
"percentage": 1.36212
},
{
"country_iso_code": "NL",
"search_volume": 10733002,
"percentage": 1.09944
},
{
"country_iso_code": "AR",
"search_volume": 10598150,
"percentage": 1.08563
},
{
"country_iso_code": "PK",
"search_volume": 10440866,
"percentage": 1.06952
},
{
"country_iso_code": "CZ",
"search_volume": 8964124,
"percentage": 0.91825
},
{
"country_iso_code": "RO",
"search_volume": 8156538,
"percentage": 0.83552
},
{
"country_iso_code": "HU",
"search_volume": 7535695,
"percentage": 0.77192
},
{
"country_iso_code": "GR",
"search_volume": 6844641,
"percentage": 0.70114
},
{
"country_iso_code": "SE",
"search_volume": 6599356,
"percentage": 0.67601
},
{
"country_iso_code": "ZA",
"search_volume": 6229546,
"percentage": 0.63813
},
{
"country_iso_code": "BE",
"search_volume": 6120549,
"percentage": 0.62696
},
{
"country_iso_code": "MY",
"search_volume": 5871367,
"percentage": 0.60144
},
{
"country_iso_code": "PE",
"search_volume": 5774442,
"percentage": 0.59151
},
{
"country_iso_code": "UA",
"search_volume": 5547947,
"percentage": 0.56831
},
{
"country_iso_code": "AT",
"search_volume": 5536424,
"percentage": 0.56713
},
{
"country_iso_code": "EG",
"search_volume": 5470533,
"percentage": 0.56038
},
{
"country_iso_code": "BD",
"search_volume": 5455133,
"percentage": 0.5588
},
{
"country_iso_code": "VE",
"search_volume": 5400846,
"percentage": 0.55324
},
{
"country_iso_code": "RU",
"search_volume": 5389142,
"percentage": 0.55204
},
{
"country_iso_code": "SK",
"search_volume": 5211986,
"percentage": 0.53389
},
{
"country_iso_code": "TW",
"search_volume": 5190293,
"percentage": 0.53167
},
{
"country_iso_code": "CL",
"search_volume": 4953234,
"percentage": 0.50739
},
{
"country_iso_code": "KE",
"search_volume": 4708049,
"percentage": 0.48227
},
{
"country_iso_code": "RS",
"search_volume": 4670909,
"percentage": 0.47847
},
{
"country_iso_code": "FI",
"search_volume": 4521474,
"percentage": 0.46316
},
{
"country_iso_code": "CH",
"search_volume": 4251092,
"percentage": 0.43546
},
{
"country_iso_code": "CN",
"search_volume": 4073400,
"percentage": 0.41726
},
{
"country_iso_code": "SA",
"search_volume": 3667893,
"percentage": 0.37572
},
{
"country_iso_code": "HR",
"search_volume": 3481084,
"percentage": 0.35659
},
{
"country_iso_code": "IE",
"search_volume": 3191425,
"percentage": 0.32692
},
{
"country_iso_code": "EC",
"search_volume": 3096843,
"percentage": 0.31723
},
{
"country_iso_code": "PT",
"search_volume": 3020551,
"percentage": 0.30941
},
{
"country_iso_code": "AE",
"search_volume": 3006859,
"percentage": 0.30801
},
{
"country_iso_code": "BG",
"search_volume": 2974616,
"percentage": 0.30471
},
{
"country_iso_code": "IL",
"search_volume": 2840033,
"percentage": 0.29092
},
{
"country_iso_code": "MA",
"search_volume": 2726451,
"percentage": 0.27929
},
{
"country_iso_code": "HK",
"search_volume": 2642647,
"percentage": 0.2707
},
{
"country_iso_code": "DK",
"search_volume": 2600824,
"percentage": 0.26642
},
{
"country_iso_code": "LT",
"search_volume": 2306967,
"percentage": 0.23632
},
{
"country_iso_code": "DZ",
"search_volume": 2217997,
"percentage": 0.2272
},
{
"country_iso_code": "KR",
"search_volume": 2087952,
"percentage": 0.21388
},
{
"country_iso_code": "NO",
"search_volume": 2076390,
"percentage": 0.2127
},
{
"country_iso_code": "SG",
"search_volume": 1968802,
"percentage": 0.20168
},
{
"country_iso_code": "NZ",
"search_volume": 1611973,
"percentage": 0.16512
},
{
"country_iso_code": "NG",
"search_volume": 1608480,
"percentage": 0.16477
},
{
"country_iso_code": "BO",
"search_volume": 1576840,
"percentage": 0.16152
},
{
"country_iso_code": "GT",
"search_volume": 1531031,
"percentage": 0.15683
},
{
"country_iso_code": "LK",
"search_volume": 1501700,
"percentage": 0.15383
},
{
"country_iso_code": "KZ",
"search_volume": 1275672,
"percentage": 0.13067
},
{
"country_iso_code": "TN",
"search_volume": 1116794,
"percentage": 0.1144
},
{
"country_iso_code": "LV",
"search_volume": 1090963,
"percentage": 0.11175
},
{
"country_iso_code": "NP",
"search_volume": 1080933,
"percentage": 0.11073
},
{
"country_iso_code": "MM",
"search_volume": 1026333,
"percentage": 0.10513
},
{
"country_iso_code": "UY",
"search_volume": 992328,
"percentage": 0.10165
},
{
"country_iso_code": "DO",
"search_volume": 990815,
"percentage": 0.10149
},
{
"country_iso_code": "GH",
"search_volume": 974959,
"percentage": 0.09987
},
{
"country_iso_code": "SI",
"search_volume": 963070,
"percentage": 0.09865
},
{
"country_iso_code": "AZ",
"search_volume": 892800,
"percentage": 0.09145
},
{
"country_iso_code": "CR",
"search_volume": 818924,
"percentage": 0.08389
},
{
"country_iso_code": "KH",
"search_volume": 794467,
"percentage": 0.08138
},
{
"country_iso_code": "UZ",
"search_volume": 635866,
"percentage": 0.06514
},
{
"country_iso_code": "SV",
"search_volume": 598796,
"percentage": 0.06134
},
{
"country_iso_code": "PY",
"search_volume": 597600,
"percentage": 0.06122
},
{
"country_iso_code": "IQ",
"search_volume": 590133,
"percentage": 0.06045
},
{
"country_iso_code": "JO",
"search_volume": 575867,
"percentage": 0.05899
},
{
"country_iso_code": "PA",
"search_volume": 573488,
"percentage": 0.05875
},
{
"country_iso_code": "EE",
"search_volume": 573334,
"percentage": 0.05873
},
{
"country_iso_code": "CY",
"search_volume": 572431,
"percentage": 0.05864
},
{
"country_iso_code": "IR",
"search_volume": 540333,
"percentage": 0.05535
},
{
"country_iso_code": "ET",
"search_volume": 483866,
"percentage": 0.04957
},
{
"country_iso_code": "HN",
"search_volume": 455005,
"percentage": 0.04661
},
{
"country_iso_code": "CI",
"search_volume": 407306,
"percentage": 0.04172
},
{
"country_iso_code": "BY",
"search_volume": 394201,
"percentage": 0.04038
},
{
"country_iso_code": "BA",
"search_volume": 392231,
"percentage": 0.04018
},
{
"country_iso_code": "QA",
"search_volume": 365897,
"percentage": 0.03748
},
{
"country_iso_code": "LB",
"search_volume": 363333,
"percentage": 0.03722
},
{
"country_iso_code": "OM",
"search_volume": 359313,
"percentage": 0.03681
},
{
"country_iso_code": "AL",
"search_volume": 357079,
"percentage": 0.03658
},
{
"country_iso_code": "KW",
"search_volume": 345533,
"percentage": 0.03539
},
{
"country_iso_code": "BH",
"search_volume": 340473,
"percentage": 0.03488
},
{
"country_iso_code": "GE",
"search_volume": 339354,
"percentage": 0.03476
},
{
"country_iso_code": "MG",
"search_volume": 335362,
"percentage": 0.03435
},
{
"country_iso_code": "SN",
"search_volume": 328600,
"percentage": 0.03366
},
{
"country_iso_code": "PR",
"search_volume": 314055,
"percentage": 0.03217
},
{
"country_iso_code": "AM",
"search_volume": 298730,
"percentage": 0.0306
},
{
"country_iso_code": "NI",
"search_volume": 281661,
"percentage": 0.02885
},
{
"country_iso_code": "MD",
"search_volume": 241578,
"percentage": 0.02475
},
{
"country_iso_code": "TZ",
"search_volume": 239066,
"percentage": 0.02449
},
{
"country_iso_code": "MK",
"search_volume": 231739,
"percentage": 0.02374
},
{
"country_iso_code": "AO",
"search_volume": 223153,
"percentage": 0.02286
},
{
"country_iso_code": "MT",
"search_volume": 206491,
"percentage": 0.02115
},
{
"country_iso_code": null,
"search_volume": 204518,
"percentage": 0.02095
},
{
"country_iso_code": "UG",
"search_volume": 195533,
"percentage": 0.02003
},
{
"country_iso_code": "ZW",
"search_volume": 191800,
"percentage": 0.01965
},
{
"country_iso_code": "PS",
"search_volume": 190200,
"percentage": 0.01948
},
{
"country_iso_code": "BW",
"search_volume": 184518,
"percentage": 0.0189
},
{
"country_iso_code": "CM",
"search_volume": 174600,
"percentage": 0.01789
},
{
"country_iso_code": "JM",
"search_volume": 171302,
"percentage": 0.01755
},
{
"country_iso_code": "LA",
"search_volume": 160933,
"percentage": 0.01649
},
{
"country_iso_code": "RW",
"search_volume": 155930,
"percentage": 0.01597
},
{
"country_iso_code": "TT",
"search_volume": 148874,
"percentage": 0.01525
},
{
"country_iso_code": "KG",
"search_volume": 144466,
"percentage": 0.0148
},
{
"country_iso_code": "NA",
"search_volume": 140138,
"percentage": 0.01436
},
{
"country_iso_code": "MZ",
"search_volume": 136533,
"percentage": 0.01399
},
{
"country_iso_code": "MN",
"search_volume": 128470,
"percentage": 0.01316
},
{
"country_iso_code": "ZM",
"search_volume": 126733,
"percentage": 0.01298
},
{
"country_iso_code": "RE",
"search_volume": 123912,
"percentage": 0.01269
},
{
"country_iso_code": "GP",
"search_volume": 113866,
"percentage": 0.01166
},
{
"country_iso_code": "CU",
"search_volume": 107400,
"percentage": 0.011
},
{
"country_iso_code": "SY",
"search_volume": 104933,
"percentage": 0.01075
},
{
"country_iso_code": "GA",
"search_volume": 103586,
"percentage": 0.01061
},
{
"country_iso_code": "AF",
"search_volume": 91800,
"percentage": 0.0094
},
{
"country_iso_code": "FJ",
"search_volume": 91321,
"percentage": 0.00935
},
{
"country_iso_code": "LY",
"search_volume": 86130,
"percentage": 0.00882
},
{
"country_iso_code": "MO",
"search_volume": 84347,
"percentage": 0.00864
},
{
"country_iso_code": "MQ",
"search_volume": 84266,
"percentage": 0.00863
},
{
"country_iso_code": "MU",
"search_volume": 77529,
"percentage": 0.00794
},
{
"country_iso_code": "ME",
"search_volume": 76847,
"percentage": 0.00787
},
{
"country_iso_code": "BJ",
"search_volume": 71933,
"percentage": 0.00737
},
{
"country_iso_code": "BF",
"search_volume": 70806,
"percentage": 0.00725
},
{
"country_iso_code": "LU",
"search_volume": 69254,
"percentage": 0.00709
},
{
"country_iso_code": "MW",
"search_volume": 68466,
"percentage": 0.00701
},
{
"country_iso_code": "YE",
"search_volume": 67533,
"percentage": 0.00692
},
{
"country_iso_code": "CV",
"search_volume": 66604,
"percentage": 0.00682
},
{
"country_iso_code": "TG",
"search_volume": 61522,
"percentage": 0.0063
},
{
"country_iso_code": "CW",
"search_volume": 60400,
"percentage": 0.00619
},
{
"country_iso_code": "CG",
"search_volume": 60058,
"percentage": 0.00615
},
{
"country_iso_code": "BT",
"search_volume": 58783,
"percentage": 0.00602
},
{
"country_iso_code": "CD",
"search_volume": 55333,
"percentage": 0.00567
},
{
"country_iso_code": "PG",
"search_volume": 53466,
"percentage": 0.00548
},
{
"country_iso_code": "SO",
"search_volume": 51417,
"percentage": 0.00527
},
{
"country_iso_code": "BN",
"search_volume": 47066,
"percentage": 0.00482
},
{
"country_iso_code": "HT",
"search_volume": 42262,
"percentage": 0.00433
},
{
"country_iso_code": "BS",
"search_volume": 39978,
"percentage": 0.0041
},
{
"country_iso_code": "SR",
"search_volume": 38521,
"percentage": 0.00395
},
{
"country_iso_code": "ML",
"search_volume": 37333,
"percentage": 0.00382
},
{
"country_iso_code": "GY",
"search_volume": 36424,
"percentage": 0.00373
},
{
"country_iso_code": "BZ",
"search_volume": 36393,
"percentage": 0.00373
},
{
"country_iso_code": "MV",
"search_volume": 34991,
"percentage": 0.00358
},
{
"country_iso_code": "GF",
"search_volume": 33400,
"percentage": 0.00342
},
{
"country_iso_code": "IS",
"search_volume": 33324,
"percentage": 0.00341
},
{
"country_iso_code": "DJ",
"search_volume": 33066,
"percentage": 0.00339
},
{
"country_iso_code": "BB",
"search_volume": 29879,
"percentage": 0.00306
},
{
"country_iso_code": "SD",
"search_volume": 27933,
"percentage": 0.00286
},
{
"country_iso_code": "LS",
"search_volume": 26666,
"percentage": 0.00273
},
{
"country_iso_code": "SZ",
"search_volume": 26133,
"percentage": 0.00268
},
{
"country_iso_code": "NC",
"search_volume": 25849,
"percentage": 0.00265
},
{
"country_iso_code": "AS",
"search_volume": 24600,
"percentage": 0.00252
},
{
"country_iso_code": "TJ",
"search_volume": 22600,
"percentage": 0.00232
},
{
"country_iso_code": "AW",
"search_volume": 21985,
"percentage": 0.00225
},
{
"country_iso_code": "MR",
"search_volume": 21933,
"percentage": 0.00225
},
{
"country_iso_code": "BI",
"search_volume": 21600,
"percentage": 0.00221
},
{
"country_iso_code": "IM",
"search_volume": 20600,
"percentage": 0.00211
},
{
"country_iso_code": "GM",
"search_volume": 20466,
"percentage": 0.0021
},
{
"country_iso_code": "GQ",
"search_volume": 17933,
"percentage": 0.00184
},
{
"country_iso_code": "SL",
"search_volume": 17133,
"percentage": 0.00176
},
{
"country_iso_code": "PF",
"search_volume": 17046,
"percentage": 0.00175
},
{
"country_iso_code": "GG",
"search_volume": 15866,
"percentage": 0.00163
},
{
"country_iso_code": "LC",
"search_volume": 15152,
"percentage": 0.00155
},
{
"country_iso_code": "SB",
"search_volume": 14679,
"percentage": 0.0015
},
{
"country_iso_code": "LR",
"search_volume": 14066,
"percentage": 0.00144
},
{
"country_iso_code": "SX",
"search_volume": 11733,
"percentage": 0.0012
},
{
"country_iso_code": "GN",
"search_volume": 11666,
"percentage": 0.0012
},
{
"country_iso_code": "MP",
"search_volume": 11333,
"percentage": 0.00116
},
{
"country_iso_code": "SC",
"search_volume": 10907,
"percentage": 0.00112
},
{
"country_iso_code": "DM",
"search_volume": 9966,
"percentage": 0.00102
},
{
"country_iso_code": "AD",
"search_volume": 8958,
"percentage": 0.00092
},
{
"country_iso_code": "AG",
"search_volume": 8775,
"percentage": 0.0009
},
{
"country_iso_code": "GU",
"search_volume": 8463,
"percentage": 0.00087
},
{
"country_iso_code": "GD",
"search_volume": 8364,
"percentage": 0.00086
},
{
"country_iso_code": "VI",
"search_volume": 8192,
"percentage": 0.00084
},
{
"country_iso_code": "BM",
"search_volume": 7737,
"percentage": 0.00079
},
{
"country_iso_code": "VC",
"search_volume": 7703,
"percentage": 0.00079
},
{
"country_iso_code": "JE",
"search_volume": 7426,
"percentage": 0.00076
},
{
"country_iso_code": "VU",
"search_volume": 6956,
"percentage": 0.00071
},
{
"country_iso_code": "YT",
"search_volume": 6733,
"percentage": 0.00069
},
{
"country_iso_code": "KY",
"search_volume": 6509,
"percentage": 0.00067
},
{
"country_iso_code": "TC",
"search_volume": 6466,
"percentage": 0.00066
},
{
"country_iso_code": "NE",
"search_volume": 5533,
"percentage": 0.00057
},
{
"country_iso_code": "FO",
"search_volume": 4800,
"percentage": 0.00049
},
{
"country_iso_code": "TD",
"search_volume": 4533,
"percentage": 0.00046
},
{
"country_iso_code": "GI",
"search_volume": 4203,
"percentage": 0.00043
},
{
"country_iso_code": "MC",
"search_volume": 4170,
"percentage": 0.00043
},
{
"country_iso_code": "KN",
"search_volume": 3575,
"percentage": 0.00037
},
{
"country_iso_code": "SS",
"search_volume": 3200,
"percentage": 0.00033
},
{
"country_iso_code": "LI",
"search_volume": 2887,
"percentage": 0.0003
},
{
"country_iso_code": "KM",
"search_volume": 2249,
"percentage": 0.00023
},
{
"country_iso_code": "GW",
"search_volume": 2049,
"percentage": 0.00021
},
{
"country_iso_code": "VG",
"search_volume": 1198,
"percentage": 0.00012
},
{
"country_iso_code": "AI",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "WS",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "ST",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "SM",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "MS",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "TO",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "TL",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "BL",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "ER",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "PW",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "TM",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "MF",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "FM",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "TF",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "GL",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "MH",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "CF",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "BQ",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "AX",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "CK",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "TV",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "WF",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "KI",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "PM",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "AQ",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "VA",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "KP",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "NF",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "FK",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "SJ",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "SH",
"search_volume": 0,
"percentage": 0
}
]
},
{
"keyword": "you tube",
"search_volume": 18575928,
"country_distribution": [
{
"country_iso_code": "US",
"search_volume": 3700636,
"percentage": 19.92168
},
{
"country_iso_code": "IN",
"search_volume": 2004893,
"percentage": 10.79296
},
{
"country_iso_code": "GB",
"search_volume": 1714070,
"percentage": 9.22737
},
{
"country_iso_code": "IT",
"search_volume": 1058907,
"percentage": 5.70043
},
{
"country_iso_code": "FR",
"search_volume": 1045765,
"percentage": 5.62968
},
{
"country_iso_code": "JP",
"search_volume": 967633,
"percentage": 5.20907
},
{
"country_iso_code": "BR",
"search_volume": 833525,
"percentage": 4.48713
},
{
"country_iso_code": "MX",
"search_volume": 780420,
"percentage": 4.20125
},
{
"country_iso_code": "DE",
"search_volume": 536152,
"percentage": 2.88628
},
{
"country_iso_code": "CA",
"search_volume": 426877,
"percentage": 2.29801
},
{
"country_iso_code": "AU",
"search_volume": 350192,
"percentage": 1.88519
},
{
"country_iso_code": "TR",
"search_volume": 348846,
"percentage": 1.87795
},
{
"country_iso_code": "ES",
"search_volume": 345881,
"percentage": 1.86199
},
{
"country_iso_code": "ID",
"search_volume": 333013,
"percentage": 1.79271
},
{
"country_iso_code": "CO",
"search_volume": 316553,
"percentage": 1.70411
},
{
"country_iso_code": "PL",
"search_volume": 303195,
"percentage": 1.63219
},
{
"country_iso_code": "AR",
"search_volume": 226253,
"percentage": 1.21799
},
{
"country_iso_code": "NL",
"search_volume": 179057,
"percentage": 0.96392
},
{
"country_iso_code": "KE",
"search_volume": 142701,
"percentage": 0.76821
},
{
"country_iso_code": "ZA",
"search_volume": 124022,
"percentage": 0.66765
},
{
"country_iso_code": "PH",
"search_volume": 120381,
"percentage": 0.64805
},
{
"country_iso_code": "BE",
"search_volume": 118547,
"percentage": 0.63818
},
{
"country_iso_code": "PE",
"search_volume": 115897,
"percentage": 0.62391
},
{
"country_iso_code": "RS",
"search_volume": 105662,
"percentage": 0.56882
},
{
"country_iso_code": "VE",
"search_volume": 102275,
"percentage": 0.55058
},
{
"country_iso_code": "PK",
"search_volume": 94533,
"percentage": 0.5089
},
{
"country_iso_code": "RO",
"search_volume": 93047,
"percentage": 0.5009
},
{
"country_iso_code": "GR",
"search_volume": 88495,
"percentage": 0.4764
},
{
"country_iso_code": "HR",
"search_volume": 87649,
"percentage": 0.47184
},
{
"country_iso_code": "IE",
"search_volume": 82371,
"percentage": 0.44343
},
{
"country_iso_code": "VN",
"search_volume": 78493,
"percentage": 0.42255
},
{
"country_iso_code": "BO",
"search_volume": 75094,
"percentage": 0.40426
},
{
"country_iso_code": "MY",
"search_volume": 73082,
"percentage": 0.39343
},
{
"country_iso_code": "AT",
"search_volume": 69410,
"percentage": 0.37366
},
{
"country_iso_code": "EC",
"search_volume": 68402,
"percentage": 0.36823
},
{
"country_iso_code": "NZ",
"search_volume": 68292,
"percentage": 0.36764
},
{
"country_iso_code": "BD",
"search_volume": 52866,
"percentage": 0.2846
},
{
"country_iso_code": "PT",
"search_volume": 52274,
"percentage": 0.28141
},
{
"country_iso_code": "SK",
"search_volume": 50962,
"percentage": 0.27434
},
{
"country_iso_code": "BG",
"search_volume": 47348,
"percentage": 0.25489
},
{
"country_iso_code": "CZ",
"search_volume": 47325,
"percentage": 0.25477
},
{
"country_iso_code": "LK",
"search_volume": 46590,
"percentage": 0.25081
},
{
"country_iso_code": "HU",
"search_volume": 46580,
"percentage": 0.25076
},
{
"country_iso_code": "CL",
"search_volume": 39585,
"percentage": 0.2131
},
{
"country_iso_code": "AE",
"search_volume": 39048,
"percentage": 0.21021
},
{
"country_iso_code": "CH",
"search_volume": 39034,
"percentage": 0.21013
},
{
"country_iso_code": "TH",
"search_volume": 33189,
"percentage": 0.17867
},
{
"country_iso_code": "GT",
"search_volume": 32402,
"percentage": 0.17443
},
{
"country_iso_code": "SE",
"search_volume": 31815,
"percentage": 0.17127
},
{
"country_iso_code": "SA",
"search_volume": 30181,
"percentage": 0.16248
},
{
"country_iso_code": "EG",
"search_volume": 29400,
"percentage": 0.15827
},
{
"country_iso_code": "FI",
"search_volume": 29044,
"percentage": 0.15635
},
{
"country_iso_code": "ET",
"search_volume": 28466,
"percentage": 0.15324
},
{
"country_iso_code": "IL",
"search_volume": 28307,
"percentage": 0.15239
},
{
"country_iso_code": "MM",
"search_volume": 27066,
"percentage": 0.14571
},
{
"country_iso_code": "SI",
"search_volume": 26712,
"percentage": 0.1438
},
{
"country_iso_code": "CR",
"search_volume": 26452,
"percentage": 0.1424
},
{
"country_iso_code": "DK",
"search_volume": 25506,
"percentage": 0.13731
},
{
"country_iso_code": "UA",
"search_volume": 25253,
"percentage": 0.13595
},
{
"country_iso_code": "UZ",
"search_volume": 22600,
"percentage": 0.12166
},
{
"country_iso_code": "NO",
"search_volume": 19742,
"percentage": 0.10628
},
{
"country_iso_code": "MT",
"search_volume": 18944,
"percentage": 0.10199
},
{
"country_iso_code": "PA",
"search_volume": 18736,
"percentage": 0.10087
},
{
"country_iso_code": "RU",
"search_volume": 18673,
"percentage": 0.10052
},
{
"country_iso_code": "MG",
"search_volume": 18598,
"percentage": 0.10012
},
{
"country_iso_code": "DZ",
"search_volume": 17107,
"percentage": 0.09209
},
{
"country_iso_code": "LT",
"search_volume": 15416,
"percentage": 0.08299
},
{
"country_iso_code": "AL",
"search_volume": 14386,
"percentage": 0.07744
},
{
"country_iso_code": "NG",
"search_volume": 13440,
"percentage": 0.07235
},
{
"country_iso_code": "SG",
"search_volume": 13130,
"percentage": 0.07068
},
{
"country_iso_code": "DO",
"search_volume": 12563,
"percentage": 0.06763
},
{
"country_iso_code": "TW",
"search_volume": 12338,
"percentage": 0.06642
},
{
"country_iso_code": "SV",
"search_volume": 11838,
"percentage": 0.06373
},
{
"country_iso_code": "KH",
"search_volume": 11627,
"percentage": 0.06259
},
{
"country_iso_code": "UY",
"search_volume": 11212,
"percentage": 0.06036
},
{
"country_iso_code": "PR",
"search_volume": 11079,
"percentage": 0.05964
},
{
"country_iso_code": "NI",
"search_volume": 10640,
"percentage": 0.05728
},
{
"country_iso_code": "UG",
"search_volume": 9733,
"percentage": 0.0524
},
{
"country_iso_code": "ZW",
"search_volume": 9200,
"percentage": 0.04953
},
{
"country_iso_code": "AZ",
"search_volume": 9173,
"percentage": 0.04938
},
{
"country_iso_code": "PY",
"search_volume": 8954,
"percentage": 0.04821
},
{
"country_iso_code": "HN",
"search_volume": 8819,
"percentage": 0.04748
},
{
"country_iso_code": "TN",
"search_volume": 8679,
"percentage": 0.04672
},
{
"country_iso_code": "CD",
"search_volume": 8266,
"percentage": 0.0445
},
{
"country_iso_code": "HK",
"search_volume": 8032,
"percentage": 0.04324
},
{
"country_iso_code": "IQ",
"search_volume": 7866,
"percentage": 0.04235
},
{
"country_iso_code": "CN",
"search_volume": 7400,
"percentage": 0.03984
},
{
"country_iso_code": "NA",
"search_volume": 7379,
"percentage": 0.03972
},
{
"country_iso_code": "MK",
"search_volume": 6938,
"percentage": 0.03735
},
{
"country_iso_code": "BW",
"search_volume": 6903,
"percentage": 0.03716
},
{
"country_iso_code": "TZ",
"search_volume": 6666,
"percentage": 0.03589
},
{
"country_iso_code": "NP",
"search_volume": 6600,
"percentage": 0.03553
},
{
"country_iso_code": "RE",
"search_volume": 6465,
"percentage": 0.0348
},
{
"country_iso_code": "MA",
"search_volume": 6349,
"percentage": 0.03418
},
{
"country_iso_code": "TG",
"search_volume": 6038,
"percentage": 0.03251
},
{
"country_iso_code": "FJ",
"search_volume": 5889,
"percentage": 0.03171
},
{
"country_iso_code": "BA",
"search_volume": 5788,
"percentage": 0.03116
},
{
"country_iso_code": "KR",
"search_volume": 5724,
"percentage": 0.03082
},
{
"country_iso_code": "BT",
"search_volume": 5668,
"percentage": 0.03051
},
{
"country_iso_code": "GH",
"search_volume": 5599,
"percentage": 0.03015
},
{
"country_iso_code": "CY",
"search_volume": 4854,
"percentage": 0.02613
},
{
"country_iso_code": "KZ",
"search_volume": 4816,
"percentage": 0.02593
},
{
"country_iso_code": "SN",
"search_volume": 4800,
"percentage": 0.02584
},
{
"country_iso_code": "IR",
"search_volume": 4333,
"percentage": 0.02333
},
{
"country_iso_code": "PF",
"search_volume": 4115,
"percentage": 0.02216
},
{
"country_iso_code": "OM",
"search_volume": 4106,
"percentage": 0.02211
},
{
"country_iso_code": "ZM",
"search_volume": 3933,
"percentage": 0.02117
},
{
"country_iso_code": "LB",
"search_volume": 3866,
"percentage": 0.02082
},
{
"country_iso_code": null,
"search_volume": 3556,
"percentage": 0.01915
},
{
"country_iso_code": "LV",
"search_volume": 3536,
"percentage": 0.01904
},
{
"country_iso_code": "MQ",
"search_volume": 3533,
"percentage": 0.01902
},
{
"country_iso_code": "CM",
"search_volume": 3333,
"percentage": 0.01794
},
{
"country_iso_code": "JO",
"search_volume": 3315,
"percentage": 0.01785
},
{
"country_iso_code": "TT",
"search_volume": 3165,
"percentage": 0.01704
},
{
"country_iso_code": "QA",
"search_volume": 2998,
"percentage": 0.01614
},
{
"country_iso_code": "CG",
"search_volume": 2953,
"percentage": 0.0159
},
{
"country_iso_code": "CI",
"search_volume": 2613,
"percentage": 0.01407
},
{
"country_iso_code": "AM",
"search_volume": 2523,
"percentage": 0.01359
},
{
"country_iso_code": "AO",
"search_volume": 2493,
"percentage": 0.01342
},
{
"country_iso_code": "RW",
"search_volume": 2413,
"percentage": 0.01299
},
{
"country_iso_code": "YT",
"search_volume": 2400,
"percentage": 0.01292
},
{
"country_iso_code": "BH",
"search_volume": 2229,
"percentage": 0.012
},
{
"country_iso_code": "ME",
"search_volume": 2221,
"percentage": 0.01196
},
{
"country_iso_code": "MW",
"search_volume": 2133,
"percentage": 0.01148
},
{
"country_iso_code": "EE",
"search_volume": 1947,
"percentage": 0.01048
},
{
"country_iso_code": "JM",
"search_volume": 1854,
"percentage": 0.00998
},
{
"country_iso_code": "BY",
"search_volume": 1700,
"percentage": 0.00916
},
{
"country_iso_code": "MZ",
"search_volume": 1533,
"percentage": 0.00825
},
{
"country_iso_code": "PS",
"search_volume": 1533,
"percentage": 0.00825
},
{
"country_iso_code": "KW",
"search_volume": 1466,
"percentage": 0.0079
},
{
"country_iso_code": "CW",
"search_volume": 1400,
"percentage": 0.00754
},
{
"country_iso_code": "SY",
"search_volume": 1400,
"percentage": 0.00754
},
{
"country_iso_code": "GE",
"search_volume": 1387,
"percentage": 0.00747
},
{
"country_iso_code": "CV",
"search_volume": 1380,
"percentage": 0.00743
},
{
"country_iso_code": "MU",
"search_volume": 1353,
"percentage": 0.00729
},
{
"country_iso_code": "CU",
"search_volume": 1333,
"percentage": 0.00718
},
{
"country_iso_code": "BI",
"search_volume": 1266,
"percentage": 0.00682
},
{
"country_iso_code": "GP",
"search_volume": 1200,
"percentage": 0.00646
},
{
"country_iso_code": "MD",
"search_volume": 1146,
"percentage": 0.00617
},
{
"country_iso_code": "LA",
"search_volume": 1066,
"percentage": 0.00574
},
{
"country_iso_code": "MN",
"search_volume": 873,
"percentage": 0.0047
},
{
"country_iso_code": "HT",
"search_volume": 866,
"percentage": 0.00466
},
{
"country_iso_code": "BF",
"search_volume": 780,
"percentage": 0.0042
},
{
"country_iso_code": "KG",
"search_volume": 733,
"percentage": 0.00395
},
{
"country_iso_code": "GF",
"search_volume": 733,
"percentage": 0.00395
},
{
"country_iso_code": "BS",
"search_volume": 716,
"percentage": 0.00386
},
{
"country_iso_code": "MO",
"search_volume": 687,
"percentage": 0.0037
},
{
"country_iso_code": "SR",
"search_volume": 657,
"percentage": 0.00354
},
{
"country_iso_code": "LU",
"search_volume": 609,
"percentage": 0.00328
},
{
"country_iso_code": "NC",
"search_volume": 554,
"percentage": 0.00298
},
{
"country_iso_code": "AF",
"search_volume": 533,
"percentage": 0.00287
},
{
"country_iso_code": "GA",
"search_volume": 531,
"percentage": 0.00286
},
{
"country_iso_code": "BZ",
"search_volume": 479,
"percentage": 0.00258
},
{
"country_iso_code": "TJ",
"search_volume": 466,
"percentage": 0.00251
},
{
"country_iso_code": "SO",
"search_volume": 464,
"percentage": 0.0025
},
{
"country_iso_code": "BB",
"search_volume": 453,
"percentage": 0.00244
},
{
"country_iso_code": "MV",
"search_volume": 431,
"percentage": 0.00232
},
{
"country_iso_code": "SZ",
"search_volume": 400,
"percentage": 0.00215
},
{
"country_iso_code": "PG",
"search_volume": 400,
"percentage": 0.00215
},
{
"country_iso_code": "GU",
"search_volume": 343,
"percentage": 0.00185
},
{
"country_iso_code": "LY",
"search_volume": 334,
"percentage": 0.0018
},
{
"country_iso_code": "LS",
"search_volume": 333,
"percentage": 0.00179
},
{
"country_iso_code": "SL",
"search_volume": 333,
"percentage": 0.00179
},
{
"country_iso_code": "MC",
"search_volume": 306,
"percentage": 0.00165
},
{
"country_iso_code": "IS",
"search_volume": 233,
"percentage": 0.00126
},
{
"country_iso_code": "GY",
"search_volume": 222,
"percentage": 0.0012
},
{
"country_iso_code": "AW",
"search_volume": 205,
"percentage": 0.00111
},
{
"country_iso_code": "ML",
"search_volume": 200,
"percentage": 0.00108
},
{
"country_iso_code": "AS",
"search_volume": 200,
"percentage": 0.00108
},
{
"country_iso_code": "BN",
"search_volume": 186,
"percentage": 0.001
},
{
"country_iso_code": "DM",
"search_volume": 182,
"percentage": 0.00098
},
{
"country_iso_code": "GI",
"search_volume": 173,
"percentage": 0.00093
},
{
"country_iso_code": "SC",
"search_volume": 155,
"percentage": 0.00083
},
{
"country_iso_code": "JE",
"search_volume": 147,
"percentage": 0.00079
},
{
"country_iso_code": "VC",
"search_volume": 140,
"percentage": 0.00076
},
{
"country_iso_code": "SD",
"search_volume": 133,
"percentage": 0.00072
},
{
"country_iso_code": "IM",
"search_volume": 133,
"percentage": 0.00072
},
{
"country_iso_code": "BJ",
"search_volume": 133,
"percentage": 0.00072
},
{
"country_iso_code": "SS",
"search_volume": 133,
"percentage": 0.00072
},
{
"country_iso_code": "YE",
"search_volume": 133,
"percentage": 0.00072
},
{
"country_iso_code": "DJ",
"search_volume": 133,
"percentage": 0.00072
},
{
"country_iso_code": "LC",
"search_volume": 123,
"percentage": 0.00067
},
{
"country_iso_code": "BM",
"search_volume": 111,
"percentage": 0.0006
},
{
"country_iso_code": "GD",
"search_volume": 88,
"percentage": 0.00048
},
{
"country_iso_code": "VG",
"search_volume": 79,
"percentage": 0.00043
},
{
"country_iso_code": "KN",
"search_volume": 71,
"percentage": 0.00038
},
{
"country_iso_code": "SX",
"search_volume": 66,
"percentage": 0.00036
},
{
"country_iso_code": "LR",
"search_volume": 66,
"percentage": 0.00036
},
{
"country_iso_code": "GQ",
"search_volume": 66,
"percentage": 0.00036
},
{
"country_iso_code": "GN",
"search_volume": 66,
"percentage": 0.00036
},
{
"country_iso_code": "AD",
"search_volume": 58,
"percentage": 0.00031
},
{
"country_iso_code": "VU",
"search_volume": 54,
"percentage": 0.00029
},
{
"country_iso_code": "VI",
"search_volume": 44,
"percentage": 0.00024
},
{
"country_iso_code": "KY",
"search_volume": 43,
"percentage": 0.00023
},
{
"country_iso_code": "AG",
"search_volume": 31,
"percentage": 0.00017
},
{
"country_iso_code": "WS",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "FM",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "CF",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "KI",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "TF",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "AI",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "TL",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "TO",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "ER",
"search_volume": 0,
"percentage": 0
},
{
"country_iso_code": "CK",
"search_volume": 0,
"percentage": 0
}
]
},
{
"keyword": "youtub",
"search_volume": 2081434,
"country_distribution": [
{
"country_iso_code": "US",
"search_volume": 390948,
"percentage": 18.78264
},
{
"country_iso_code": "IN",
"search_volume": 221853,
"percentage": 10.65867
},
{
"country_iso_code": "ID",
"search_volume": 105386,
"percentage": 5.06317
},
{
"country_iso_code": "FR",
"search_volume": 102638,
"percentage": 4.93113
},
{
"country_iso_code": "BR",
"search_volume": 102355,
"percentage": 4.91753
},
{
"country_iso_code": "GB",
"search_volume": 99991,
"percentage": 4.80395
},
{
"country_iso_code": "TR",
"search_volume": 75675,
"percentage": 3.63575
},
{
"country_iso_code": "DE",
"search_volume": 71733,
"percentage": 3.44636
},
{
"country_iso_code": "JP",
"search_volume": 62300,
"percentage": 2.99313
},
{
"country_iso_code": "CN",
"search_volume": 56333,
"percentage": 2.70647
},
{
"country_iso_code": "ES",
"search_volume": 53404,
"percentage": 2.56576
},
{
"country_iso_code": "CA",
"search_volume": 49709,
"percentage": 2.38824
},
{
"country_iso_code": "MX",
"search_volume": 45512,
"percentage": 2.18657
},
{
"country_iso_code": "IT",
"search_volume": 43515,
"percentage": 2.09063
},
{
"country_iso_code": "AU",
"search_volume": 33966,
"percentage": 1.63186
},
{
"country_iso_code": "PK",
"search_volume": 31066,
"percentage": 1.49256
},
{
"country_iso_code": "MA",
"search_volume": 30145,
"percentage": 1.44828
},
{
"country_iso_code": "PH",
"search_volume": 27426,
"percentage": 1.31768
},
{
"country_iso_code": "DZ",
"search_volume": 24982,
"percentage": 1.20025
},
{
"country_iso_code": "NL",
"search_volume": 23144,
"percentage": 1.11196
},
{
"country_iso_code": "CO",
"search_volume": 19008,
"percentage": 0.91322
},
{
"country_iso_code": "VN",
"search_volume": 15961,
"percentage": 0.76686
},
{
"country_iso_code": "BE",
"search_volume": 15361,
"percentage": 0.73802
},
{
"country_iso_code": "PL",
"search_volume": 15153,
"percentage": 0.72804
},
{
"country_iso_code": "BD",
"search_volume": 15133,
"percentage": 0.72706
},
{
"country_iso_code": "AR",
"search_volume": 14886,
"percentage": 0.71522
},
{
"country_iso_code": "TH",
"search_volume": 13926,
"percentage": 0.66909
},
{
"country_iso_code": "HK",
"search_volume": 13808,
"percentage": 0.66341
},
{
"country_iso_code": "MY",
"search_volume": 11259,
"percentage": 0.54093
},
{
"country_iso_code": "AT",
"search_volume": 11070,
"percentage": 0.53188
},
{
"country_iso_code": "ZA",
"search_volume": 10496,
"percentage": 0.50431
},
{
"country_iso_code": "RU",
"search_volume": 10223,
"percentage": 0.49116
},
{
"country_iso_code": "TW",
"search_volume": 9635,
"percentage": 0.46292
},
{
"country_iso_code": "CH",
"search_volume": 9418,
"percentage": 0.4525
},
{
"country_iso_code": "IE",
"search_volume": 9060,
"percentage": 0.43532
},
{
"country_iso_code": "PE",
"search_volume": 8656,
"percentage": 0.41588
},
{
"country_iso_code": "HU",
"search_volume": 8631,
"percentage": 0.41469
},
{
"country_iso_code": "PT",
"search_volume": 8594,
"percentage": 0.41289
},
{
"country_iso_code": "RO",
"search_volume": 8227,
"percentage": 0.39528
},
{
"country_iso_code": "FI",
"search_volume": 7979,
"percentage": 0.38335
},
{
"country_iso_code": "SE",
"search_volume": 7086,
"percentage": 0.34045
},
{
"country_iso_code": "CL",
"search_volume": 7037,
"percentage": 0.3381
},
{
"country_iso_code": "VE",
"search_volume": 7003,
"percentage": 0.33647
},
{
"country_iso_code": "TN",
"search_volume": 6756,
"percentage": 0.32462
},
{
"country_iso_code": "AE",
"search_volume": 6734,
"percentage": 0.32356
},
{
"country_iso_code": "SG",
"search_volume": 6677,
"percentage": 0.32083
},
{
"country_iso_code": "EG",
"search_volume": 6066,
"percentage": 0.29147
},
{
"country_iso_code": "CZ",
"search_volume": 6026,
"percentage": 0.28955
},
{
"country_iso_code": "DK",
"search_volume": 5797,
"percentage": 0.27851
},
{
"country_iso_code": "KE",
"search_volume": 5745,
"percentage": 0.27602
},
{
"country_iso_code": "UA",
"search_volume": 5628,
"percentage": 0.27043
},
{
"country_iso_code": "RS",
"search_volume": 4931,
"percentage": 0.23692
},
{
"country_iso_code": "SA",
"search_volume": 4821,
"percentage": 0.23164
},
{
"country_iso_code": "AZ",
"search_volume": 4480,
"percentage": 0.21524
},
{
"country_iso_code": "ET",
"search_volume": 4333,
"percentage": 0.20819
},
{
"country_iso_code": "EC",
"search_volume": 4025,
"percentage": 0.19341
},
{
"country_iso_code": "IL",
"search_volume": 3960,
"percentage": 0.19025
},
{
"country_iso_code": "HR",
"search_volume": 3810,
"percentage": 0.18308
},
{
"country_iso_code": "NP",
"search_volume": 3800,
"percentage": 0.18257
},
{
"country_iso_code": "BG",
"search_volume": 3719,
"percentage": 0.1787
},
{
"country_iso_code": "NG",
"search_volume": 3680,
"percentage": 0.1768
},
{
"country_iso_code": "GR",
"search_volume": 3463,
"percentage": 0.16641
},
{
"country_iso_code": "SK",
"search_volume": 3437,
"percentage": 0.16517
},
{
"country_iso_code": "NZ",
"search_volume": 3365,
"percentage": 0.16168
},
{
"country_iso_code": "IR",
"search_volume": 3266,
"percentage": 0.15694
},
{
"country_iso_code": "UY",
"search_volume": 2550,
"percentage": 0.12254
},
{
"country_iso_code": "CI",
"search_volume": 2333,
"percentage": 0.1121
},
{
"country_iso_code": "SN",
"search_volume": 2300,
"percentage": 0.1105
},
{
"country_iso_code": "NO",
"search_volume": 2256,
"percentage": 0.1084
},
{
"country_iso_code": "RE",
"search_volume": 2214,
"percentage": 0.10641
},
{
"country_iso_code": "BO",
"search_volume": 2207,
"percentage": 0.10606
},
{
"country_iso_code": "KZ",
"search_volume": 2140,
"percentage": 0.10285
},
{
"country_iso_code": "KR",
"search_volume": 2105,
"percentage": 0.10114
},
{
"country_iso_code": "LT",
"search_volume": 1949,
"percentage": 0.09365
},
{
"country_iso_code": "IQ",
"search_volume": 1866,
"percentage": 0.08968
},
{
"country_iso_code": "MG",
"search_volume": 1846,
"percentage": 0.08872
},
{
"country_iso_code": "GH",
"search_volume": 1679,
"percentage": 0.08071
},
{
"country_iso_code": "DO",
"search_volume": 1564,
"percentage": 0.07516
},
{
"country_iso_code": "AM",
"search_volume": 1369,
"percentage": 0.06582
},
{
"country_iso_code": "AF",
"search_volume": 1333,
"percentage": 0.06406
},
{
"country_iso_code": "LK",
"search_volume": 1325,
"percentage": 0.0637
},
{
"country_iso_code": "OM",
"search_volume": 1303,
"percentage": 0.06264
},
{
"country_iso_code": "GT",
"search_volume": 1231,
"percentage": 0.05915
},
{
"country_iso_code": "BF",
"search_volume": 1213,
"percentage": 0.05829
},
{
"country_iso_code": "UZ",
"search_volume": 1200,
"percentage": 0.05765
},
{
"country_iso_code": "PY",
"search_volume": 1180,
"percentage": 0.05673
},
{
"country_iso_code": "GN",
"search_volume": 1133,
"percentage": 0.05445
},
{
"country_iso_code": "MM",
"search_volume": 1133,
"percentage": 0.05445
},
{
"country_iso_code": "GA",
"search_volume": 1063,
"percentage": 0.05107
},
{
"country_iso_code": "QA",
"search_volume": 1044,
"percentage": 0.0502
},
{
"country_iso_code": "LB",
"search_volume": 866,
"percentage": 0.04164
},
{
"country_iso_code": "TG",
"search_volume": 854,
"percentage": 0.04105
},
{
"country_iso_code": "CY",
"search_volume": 800,
"percentage": 0.03844
},
{
"country_iso_code": "BH",
"search_volume": 757,
"percentage": 0.03637
},
{
"country_iso_code": "PA",
"search_volume": 744,
"percentage": 0.03575
},
{
"country_iso_code": "MZ",
"search_volume": 733,
"percentage": 0.03523
},
{
"country_iso_code": "MT",
"search_volume": 728,
"percentage": 0.035
},
{
"country_iso_code": "CR",
"search_volume": 714,
"percentage": 0.0343
},
{
"country_iso_code": "JO",
"search_volume": 686,
"percentage": 0.03296
},
{
"country_iso_code": "LV",
"search_volume": 682,
"percentage": 0.03279
},
{
"country_iso_code": "CM",
"search_volume": 666,
"percentage": 0.03203
},
{
"country_iso_code": "AO",
"search_volume": 660,
"percentage": 0.03171
},
{
"country_iso_code": "SI",
"search_volume": 637,
"percentage": 0.03063
},
{
"country_iso_code": "HN",
"search_volume": 629,
"percentage": 0.03026
},
{
"country_iso_code": "EE",
"search_volume": 599,
"percentage": 0.02879
},
{
"country_iso_code": "NI",
"search_volume": 591,
"percentage": 0.0284
},
{
"country_iso_code": "SV",
"search_volume": 586,
"percentage": 0.02817
},
{
"country_iso_code": "YE",
"search_volume": 533,
"percentage": 0.02562
},
{
"country_iso_code": null,
"search_volume": 526,
"percentage": 0.02528
},
{
"country_iso_code": "AL",
"search_volume": 496,
"percentage": 0.02383
},
{
"country_iso_code": "BA",
"search_volume": 479,
"percentage": 0.02304
},
{
"country_iso_code": "KW",
"search_volume": 466,
"percentage": 0.02242
},
{
"country_iso_code": "BJ",
"search_volume": 466,
"percentage": 0.02242
},
{
"country_iso_code": "CG",
"search_volume": 414,
"percentage": 0.01991
},
{
"country_iso_code": "JM",
"search_volume": 408,
"percentage": 0.01963
},
{
"country_iso_code": "UG",
"search_volume": 400,
"percentage": 0.01922
},
{
"country_iso_code": "ZM",
"search_volume": 400,
"percentage": 0.01922
},
{
"country_iso_code": "MQ",
"search_volume": 400,
"percentage": 0.01922
},
{
"country_iso_code": "PS",
"search_volume": 400,
"percentage": 0.01922
},
{
"country_iso_code": "KH",
"search_volume": 396,
"percentage": 0.01904
},
{
"country_iso_code": "MK",
"search_volume": 376,
"percentage": 0.01807
},
{
"country_iso_code": "MD",
"search_volume": 360,
"percentage": 0.0173
},
{
"country_iso_code": "LY",
"search_volume": 334,
"percentage": 0.01606
},
{
"country_iso_code": "MR",
"search_volume": 333,
"percentage": 0.01601
},
{
"country_iso_code": "SY",
"search_volume": 333,
"percentage": 0.01601
},
{
"country_iso_code": "TT",
"search_volume": 313,
"percentage": 0.01508
},
{
"country_iso_code": "CD",
"search_volume": 266,
"percentage": 0.01281
},
{
"country_iso_code": "SD",
"search_volume": 266,
"percentage": 0.01281
},
{
"country_iso_code": "PG",
"search_volume": 266,
"percentage": 0.01281
},
{
"country_iso_code": "NA",
"search_volume": 265,
"percentage": 0.01278
},
{
"country_iso_code": "GE",
"search_volume": 247,
"percentage": 0.0119
},
{
"country_iso_code": "GY",
"search_volume": 222,
"percentage": 0.01069
},
{
"country_iso_code": "PR",
"search_volume": 219,
"percentage": 0.01054
},
{
"country_iso_code": "BY",
"search_volume": 207,
"percentage": 0.00997
},
{
"country_iso_code": "NC",
"search_volume": 201,
"percentage": 0.00968
},
{
"country_iso_code": "ZW",
"search_volume": 200,
"percentage": 0.00961
},
{
"country_iso_code": "LA",
"search_volume": 200,
"percentage": 0.00961
},
{
"country_iso_code": "HT",
"search_volume": 199,
"percentage": 0.0096
},
{
"country_iso_code": "MU",
"search_volume": 193,
"percentage": 0.00929
},
{
"country_iso_code": "BT",
"search_volume": 191,
"percentage": 0.00918
},
{
"country_iso_code": "LU",
"search_volume": 177,
"percentage": 0.00854
},
{
"country_iso_code": "SO",
"search_volume": 174,
"percentage": 0.00836
},
{
"country_iso_code": "MN",
"search_volume": 145,
"percentage": 0.00699
},
{
"country_iso_code": "IS",
"search_volume": 136,
"percentage": 0.00655
},
{
"country_iso_code": "MV",
"search_volume": 134,
"percentage": 0.00647
},
{
"country_iso_code": "TC",
"search_volume": 133,
"percentage": 0.00641
},
{
"country_iso_code": "SL",
"search_volume": 133,
"percentage": 0.00641
},
{
"country_iso_code": "TZ",
"search_volume": 133,
"percentage": 0.00641
},
{
"country_iso_code": "RW",
"search_volume": 130,
"percentage": 0.00627
},
{
"country_iso_code": "KN",
"search_volume": 107,
"percentage": 0.00515
},
{
"country_iso_code": "MO",
"search_volume": 98,
"percentage": 0.00472
},
{
"country_iso_code": "LC",
"search_volume": 88,
"percentage": 0.00425
},
{
"country_iso_code": "CW",
"search_volume": 66,
"percentage": 0.0032
},
{
"country_iso_code": "TJ",
"search_volume": 66,
"percentage": 0.0032
},
{
"country_iso_code": "DJ",
"search_volume": 66,
"percentage": 0.0032
},
{
"country_iso_code": "KG",
"search_volume": 66,
"percentage": 0.0032
},
{
"country_iso_code": "LS",
"search_volume": 66,
"percentage": 0.0032
},
{
"country_iso_code": "ML",
"search_volume": 66,
"percentage": 0.0032
},
{
"country_iso_code": "MW",
"search_volume": 66,
"percentage": 0.0032
},
{
"country_iso_code": "BZ",
"search_volume": 65,
"percentage": 0.00314
},
{
"country_iso_code": "MC",
"search_volume": 61,
"percentage": 0.00295
},
{
"country_iso_code": "FJ",
"search_volume": 59,
"percentage": 0.00285
},
{
"country_iso_code": "BW",
"search_volume": 56,
"percentage": 0.00272
},
{
"country_iso_code": "SB",
"search_volume": 54,
"percentage": 0.0026
},
{
"country_iso_code": "BN",
"search_volume": 53,
"percentage": 0.00256
},
{
"country_iso_code": "ME",
"search_volume": 52,
"percentage": 0.00254
},
{
"country_iso_code": "GD",
"search_volume": 44,
"percentage": 0.00213
},
{
"country_iso_code": "VI",
"search_volume": 44,
"percentage": 0.00213
},
{
"country_iso_code": "GI",
"search_volume": 43,
"percentage": 0.00208
},
{
"country_iso_code": "KM",
"search_volume": 42,
"percentage": 0.00204
},
{
"country_iso_code": "AW",
"search_volume": 34,
"percentage": 0.00165
},
{
"country_iso_code": "AD",
"search_volume": 29,
"percentage": 0.0014
},
{
"country_iso_code": "BB",
"search_volume": 22,
"percentage": 0.00109
}
]
}
]
}
]
}
]
}
POST https://api.dataforseo.com/v3/keywords_data/clickstream_data/global_search_volume/live
Your account will be charged for each request.
The cost can be calculated on the Pricing page.
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. The maximum number of requests that can be sent simultaneously is limited to 30.
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
keywords
array
target keywords
required field
UTF-8 encoding
maximum number of keywords you can specify in this array: 1000;
each keyword should be at least 3 characters long;
the keywords will be converted to lowercase format;
Note: certain symbols and characters (e.g., UTF symbols, emojis) are not allowed
to learn more about which symbols and characters can be used, please refer to this article
learn more about rules and limitations of keyword
and keywords
fields in DataForSEO APIs in this Help Center article
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 returned with 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
items_count
integer
the number of results returned in the items
array
items
array
contains keywords and related data
keyword
string
keyword
keyword is returned with decoded %## (plus symbol ‘+’ will be decoded to a space character)
search_volume
integer
clickstream-based average monthly search volume rate
represents the (approximate) number of searches for the given keyword idea based on clickstream
you can learn more about clickstream search volume in this Help Center article
country_distribution
array
distribution of clickstream by countries
represents clickstream-based search volume in available countries, as well as its respective percentage of global search volume
country_iso_code
string
country ISO code
search_volume
integer
search volume in a given country
percentage
float
percentage of global search volume