Pricing
Your account will not be charged for using this API
Your account will not be charged for using this API
You will receive detailed information about your API usage, prices, spending and other account details by calling this API.
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.
| 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 | total 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 |
array | contains the parameters passed in the URL of the GET request |
result |
array | array of results |
login |
string | your login |
timezone |
string | your time zone can be set in your profile settings |
rates |
object | your API rates |
limits |
object | rate limits for API calls per a certain period of time |
$type_of_grouping |
object | type of grouping can take the following values: day, minute |
$func_name |
object | function name |
$func_type |
object | function type note: can be an integer type |
$func_name |
integer | calls limit for a certain function |
total_$func_name |
integer | total calls limit for a certain function |
statistics |
object | statisctics for API calls |
$type_of_grouping |
object | type of grouping can take the following values: day, minute |
$func_name |
object | function name |
$func_type |
object | function type note: can be an integer type |
$func_name |
integer | number of calls for a certain function |
total_$func_name |
integer | total number of calls for a certain function |
value |
string | time period for groupingday in the yyyy-MM-dd formatminute in the yyyy-MM-dd HH:mm format |
money |
object | section of your spending, USD |
total |
float | total amount of money deposited to your account |
balance |
float | amount of money left in your account |
limits |
object | cost limits |
$type_of_grouping |
object | type of grouping can take the following values: day, minute |
$func_name |
object | function name |
$func_type |
object | function type note: can be an integer type |
$func_name |
integer | spending limit for a certain function |
total_$func_name |
integer | total spending limit for a certain function |
statistics |
object | statistics of your spending |
$type_of_grouping |
object | type of grouping can take the following values: day, minute |
$func_name |
object | function name |
$func_type |
object | function type note: can be an integer type |
$func_name |
integer | amount of money spent for a certain function |
total_$func_name |
integer | total amount of money spent for a certain function |
value |
string | time period for groupingday in the yyyy-MM-dd formatminute in the yyyy-MM-dd HH:mm format |
price |
object | pricing |
$api_name |
object | the parent API of the function |
$func_type |
object | function type note: can be an integer type |
$func_name |
object | function name |
$priority |
object | task priority can take the following values: priority_normal, priority_high |
cost_type |
string | charge type can take the following values: per_result – charge for every row in the result arrayper_request – charge for a GET or POST request |
cost |
float | cost, USD |
backlinks_subscription_expiry_date |
string | expiry date of the backlinks api subscription date and time when the current subscription to Backlinks API expires; in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00” example: 2025-06-15 12:57:46 +00:00Note: if there is no active subscription to Backlinks API, the value equals null
|
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 GET "https://api.dataforseo.com/v3/appendix/user_data"
--header "Authorization: Basic ${cred}"
--header "Content-Type: application/json" <?php
// You can download this file from here https://api.dataforseo.com/v3/_examples/php/_php_RestClient.zip
require('RestClient.php');
$api_url = 'https://api.dataforseo.com/';
try {
// Instead of 'login' and 'password' use your credentials from https://app.dataforseo.com/api-access
$client = new RestClient($api_url, null, 'login', 'password');
} 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";
exit();
}
try {
// using this method you can get information about current user
// GET /v3/appendix/user_data
$result = $client->get('/v3/appendix/user_data');
print_r($result);
// do something with 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;
?>const axios = require('axios');
axios({
method: 'get',
url: 'https://api.dataforseo.com/v3/appendix/user_data',
auth: {
username: 'login',
password: 'password'
},
headers: {
'content-type': 'application/json'
}
}).then(function (response) {
var result = response['data']['tasks'][0]['result'];
// Result data
console.log(result);
}).catch(function (error) {
console.log(error);
});from random import Random
from client import RestClient
# You can download this file from here https://api.dataforseo.com/v3/_examples/python/_python_Client.zip
client = RestClient("login", "password")
# using this method you can get information about current user
# GET /v3/appendix/user_data
response = client.get("/v3/appendix/user_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.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 appendix_user_data()
{
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"))) }
};
// using this method you can get information about current user
// GET /v3/appendix/user_data
var response = await httpClient.GetAsync("/v3/appendix/user_data");
var result = JsonConvert.DeserializeObject(await response.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.20250526",
"status_code": 20000,
"status_message": "Ok.",
"time": "0.1656 sec.",
"cost": 0,
"tasks_count": 1,
"tasks_error": 0,
"tasks": [
{
"id": "05291903-1535-0064-0000-b2e6429ff433",
"status_code": 20000,
"status_message": "Ok.",
"time": "0.1087 sec.",
"cost": 0,
"result_count": 1,
"path": [
"v3",
"appendix",
"user_data"
],
"data": {
"api": "appendix",
"function": "user_data"
},
"result": [
{
"login": "support@dataforseo.com",
"timezone": "Europe/Kiev",
"rates": {
"limits": {
"day": {
"serp": {
"task_post": 0,
"task_get": {
"regular": 0,
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"locations": 0,
"languages": 0,
"live": {
"regular": 0,
"advanced": 0,
"html": 0
},
"errors": 0,
"tasks_fixed": 0,
"jobs": {
"task_post": 0
},
"screenshot": 0
},
"total": 0,
"total_serp": 0,
"keywords_data": {
"keywords_for_keywords": {
"task_post": 0,
"task_get": 0
},
"keywords_for_site": {
"task_post": 0,
"task_get": 0
},
"search_volume": {
"task_post": 0,
"task_get": 0
},
"ad_traffic_by_keywords": {
"task_post": 0,
"task_get": 0
},
"languages": 0,
"locations": 0,
"tasks_ready": 0,
"explore": {
"task_post": 0,
"task_get": 0,
"live": 0
},
"categories": 0,
"errors": 0,
"bing": {
"keyword_performance": {
"live": 0
},
"search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"audience_estimation": {
"live": 0
},
"keyword_suggestions_for_url": {
"live": 0
}
},
"keyword_performance": {
"task_get": 0,
"task_post": 0
},
"locations_and_languages": 0,
"google_ads": {
"status": 0,
"search_volume": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"ad_traffic_by_keywords": {
"live": 0
}
},
"dataforseo_trends": {
"explore": {
"live": 0
},
"subregion_interests": {
"live": 0
},
"demography": {
"live": 0
},
"merged_data": {
"live": 0
}
},
"clickstream_data": {
"dataforseo_search_volume": {
"live": 0
},
"locations_and_languages": 0,
"bulk_search_volume": {
"live": 0
},
"global_search_volume": {
"live": 0
}
},
"audience_estimation": {
"task_post": 0,
"task_get": 0
},
"keyword_suggestions_for_url": {
"task_post": 0,
"task_get": 0
}
},
"total_keywords_data": 0,
"appendix": {
"user_data": 0,
"errors": 0
},
"total_appendix": 0,
"dataforseo_labs": {
"locations_and_languages": 0,
"categories": 0,
"errors": 0,
"product_competitors": {
"live": 0
},
"product_keyword_intersections": {
"live": 0
},
"product_rank_overview": {
"live": 0
},
"ranked_keywords": {
"live": 0
},
"serp_competitors": {
"live": 0
},
"subdomains": {
"live": 0
},
"relevant_pages": {
"live": 0
},
"competitors_domain": {
"live": 0
},
"related_keywords": {
"live": 0
},
"domain_rank_overview": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"page_intersection": {
"live": 0
},
"bulk_traffic_estimation": {
"live": 0
},
"bulk_keyword_difficulty": {
"live": 0
},
"bulk_search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keyword_suggestions": {
"live": 0
},
"keyword_ideas": {
"live": 0
},
"historical_search_volume": {
"live": 0
},
"categories_for_domain": {
"live": 0
},
"domain_metrics_by_categories": {
"live": 0
},
"top_searches": {
"live": 0
},
"domain_whois_overview": {
"live": 0
},
"historical_rank_overview": {
"live": 0
},
"keywords_for_categories": {
"live": 0
},
"historical_serps": {
"live": 0
},
"app_competitors": {
"live": 0
},
"keywords_for_app": {
"live": 0
},
"app_intersection": {
"live": 0
},
"bulk_app_metrics": {
"live": 0
},
"search_intent": {
"live": 0
},
"historical_bulk_traffic_estimation": {
"live": 0
},
"categories_for_keywords": {
"live": 0
},
"keyword_overview": {
"live": 0
},
"historical_keyword_data": {
"live": 0
}
},
"total_dataforseo_labs": 0,
"domain_analytics": {
"tasks_ready": 0,
"errors": 0,
"whois": {
"overview": {
"live": 0
}
},
"technologies": {
"domain_technologies": {
"live": 0
},
"domains_by_technology": {
"live": 0
},
"languages": 0,
"locations": 0,
"technologies": 0,
"aggregation_technologies": {
"live": 0
},
"technologies_summary": {
"live": 0
},
"domains_by_html_terms": {
"live": 0
},
"technology_stats": {
"live": 0
}
}
},
"total_domain_analytics": 0,
"merchant": {
"google": {
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"ad_url": 0
},
"product_spec": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"product_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
}
},
"amazon": {
"asin": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"reviews": {
"tasks_ready": 0,
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"tasks_ready": 0
},
"total_merchant": 0,
"on_page": {
"task_post": 0,
"tasks_ready": 0,
"summary": 0,
"resources": 0,
"pages": 0,
"non_indexable": 0,
"duplicate_tags": 0,
"links": 0,
"waterfall": 0,
"errors": 0,
"pages_by_resource": 0,
"duplicate_content": 0,
"raw_html": 0,
"instant_pages": 0,
"redirect_chains": 0,
"lighthouse": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"keyword_density": 0,
"page_screenshot": 0,
"content_parsing": 0,
"content_parsing_live": 0
},
"total_on_page": 0,
"business_data": {
"google": {
"my_business_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"my_business_updates": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"hotel_info": {
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"live": {
"advanced": 0,
"html": 0
}
},
"hotel_searches": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0,
"live": 0
},
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"questions_and_answers": {
"task_post": 0,
"live": 0,
"tasks_ready": 0,
"task_get": 0
},
"extended_reviews": {
"task_post": 0,
"task_get": 0
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"yelp": {
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"social_media": {
"facebook": {
"live": 0
},
"pinterest": {
"live": 0
},
"reddit": {
"live": 0
}
},
"tripadvisor": {
"reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"trustpilot": {
"reviews": {
"task_get": 0,
"tasks_ready": 0,
"task_post": 0
},
"search": {
"tasks_ready": 0,
"task_get": 0,
"task_post": 0
}
},
"business_listings": {
"search": {
"live": 0
},
"categories_aggregation": {
"live": 0
},
"categories": 0,
"locations": 0
},
"tasks_ready": 0
},
"total_business_data": 0,
"backlinks": {
"summary": {
"live": 0
},
"history": {
"live": 0
},
"content_duplicates": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"backlinks": {
"live": 0
},
"domain_pages": {
"live": 0
},
"anchors": {
"live": 0
},
"referring_domains": {
"live": 0
},
"page_intersection": {
"live": 0
},
"referring_networks": {
"live": 0
},
"bulk_ranks": {
"live": 0
},
"bulk_backlinks": {
"live": 0
},
"bulk_new_lost_backlinks": {
"live": 0
},
"bulk_new_lost_referring_domains": {
"live": 0
},
"bulk_referring_domains": {
"live": 0
},
"errors": 0,
"domain_pages_summary": {
"live": 0
},
"timeseries_summary": {
"live": 0
},
"timeseries_new_lost_summary": {
"live": 0
},
"competitors": {
"live": 0
},
"bulk_spam_score": {
"live": 0
},
"bulk_pages_summary": {
"live": 0
}
},
"total_backlinks": 0,
"app_data": {
"app_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_list": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
},
"app_searches": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"errors": 0,
"languages": 0,
"locations": 0,
"categories": 0,
"app_listings": {
"categories_aggregation": {
"live": 0
},
"search": {
"live": 0
}
},
"tasks_ready": 0
},
"total_app_data": 0,
"content_analysis": {
"search": {
"live": 0
},
"summary": {
"live": 0
},
"sentiment_analysis": {
"live": 0
},
"rating_distribution": {
"live": 0
},
"phrase_trends": {
"live": 0
},
"category_trends": {
"live": 0
},
"locations": 0,
"languages": 0,
"categories": 0,
"errors": 0
},
"total_content_analysis": 0,
"content_generation": {
"generate": {
"live": 0
},
"generate_meta_tags": {
"live": 0
},
"generate_text": {
"live": 0
},
"paraphrase": {
"live": 0
},
"check_grammar": {
"live": 0,
"languages": 0
},
"text_summary": {
"live": 0,
"languages": 0
},
"generate_sub_topics": {
"live": 0
}
},
"total_content_generation": 0,
"total_traffic_analytics": 0,
"total_reviews": 0,
"total_social": 0
},
"minute": {
"serp": {
"task_post": 0,
"task_get": {
"regular": 0,
"advanced": 0,
"html": 0
},
"tasks_ready": 60,
"locations": 0,
"languages": 0,
"live": {
"regular": 0,
"advanced": 0,
"html": 0
},
"errors": 10,
"tasks_fixed": 0,
"jobs": {
"task_post": 0
},
"screenshot": 0,
"tasks_ready_queue": 1000
},
"total": 2000,
"total_serp": 0,
"keywords_data": {
"keywords_for_keywords": {
"task_post": 0,
"task_get": 0
},
"keywords_for_site": {
"task_post": 0,
"task_get": 0
},
"search_volume": {
"task_post": 0,
"task_get": 0
},
"ad_traffic_by_keywords": {
"task_post": 0,
"task_get": 0
},
"languages": 0,
"locations": 0,
"tasks_ready": 80,
"explore": {
"task_post": 0,
"task_get": 0,
"live": 0
},
"categories": 0,
"errors": 100,
"bing": {
"keyword_performance": {
"live": 0
},
"search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"audience_estimation": {
"live": 0
},
"keyword_suggestions_for_url": {
"live": 0
}
},
"keyword_performance": {
"task_get": 0,
"task_post": 0
},
"locations_and_languages": 0,
"google_ads": {
"status": 0,
"search_volume": {
"live": 12
},
"keywords_for_keywords": {
"live": 12
},
"keywords_for_site": {
"live": 12
},
"ad_traffic_by_keywords": {
"live": 12
}
},
"dataforseo_trends": {
"explore": {
"live": 0
},
"subregion_interests": {
"live": 0
},
"demography": {
"live": 0
},
"merged_data": {
"live": 0
}
},
"clickstream_data": {
"dataforseo_search_volume": {
"live": 12
},
"locations_and_languages": 0,
"bulk_search_volume": {
"live": 0
},
"global_search_volume": {
"live": 0
}
},
"audience_estimation": {
"task_post": 0,
"task_get": 0
},
"keyword_suggestions_for_url": {
"task_post": 0,
"task_get": 0
},
"naver": {
"keywords_for_category": {
"live": 200
},
"search_volume": {
"live": 200
}
},
"google": {
"keywords_for_site": {
"live": 12
},
"search_volume": {
"live": 12
},
"keywords_for_keywords": {
"live": 12
}
},
"keyword_ideas_ads_api": {
"tasks_ready": 20
}
},
"total_keywords_data": 0,
"appendix": {
"user_data": 6,
"errors": 0,
"status": 10,
"test": 3
},
"total_appendix": 0,
"dataforseo_labs": {
"locations_and_languages": 0,
"categories": 0,
"errors": 10,
"product_competitors": {
"live": 0
},
"product_keyword_intersections": {
"live": 0
},
"product_rank_overview": {
"live": 0
},
"ranked_keywords": {
"live": 0
},
"serp_competitors": {
"live": 0
},
"subdomains": {
"live": 0
},
"relevant_pages": {
"live": 0
},
"competitors_domain": {
"live": 0
},
"related_keywords": {
"live": 0
},
"domain_rank_overview": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"page_intersection": {
"live": 0
},
"bulk_traffic_estimation": {
"live": 0
},
"bulk_keyword_difficulty": {
"live": 0
},
"bulk_search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keyword_suggestions": {
"live": 0
},
"keyword_ideas": {
"live": 0
},
"historical_search_volume": {
"live": 0
},
"categories_for_domain": {
"live": 0
},
"domain_metrics_by_categories": {
"live": 0
},
"top_searches": {
"live": 0
},
"domain_whois_overview": {
"live": 0
},
"historical_rank_overview": {
"live": 0
},
"keywords_for_categories": {
"live": 0
},
"historical_serps": {
"live": 0
},
"app_competitors": {
"live": 0
},
"keywords_for_app": {
"live": 0
},
"app_intersection": {
"live": 0
},
"bulk_app_metrics": {
"live": 0
},
"search_intent": {
"live": 0
},
"historical_bulk_traffic_estimation": {
"live": 0
},
"categories_for_keywords": {
"live": 0
},
"keyword_overview": {
"live": 0
},
"historical_keyword_data": {
"live": 0
}
},
"total_dataforseo_labs": 0,
"domain_analytics": {
"tasks_ready": 0,
"errors": 0,
"whois": {
"overview": {
"live": 0
}
},
"technologies": {
"domain_technologies": {
"live": 0
},
"domains_by_technology": {
"live": 0
},
"languages": 0,
"locations": 0,
"technologies": 0,
"aggregation_technologies": {
"live": 0
},
"technologies_summary": {
"live": 0
},
"domains_by_html_terms": {
"live": 0
},
"technology_stats": {
"live": 0
}
}
},
"total_domain_analytics": 0,
"merchant": {
"google": {
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"ad_url": 0
},
"product_spec": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"product_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
}
},
"amazon": {
"asin": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"products": {
"task_post": 0,
"tasks_ready": 20,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 20,
"task_get": {
"advanced": 0,
"html": 0
}
}
},
"locations": 0,
"languages": 0,
"errors": 10,
"reviews": {
"tasks_ready": 0,
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"tasks_ready": 0
},
"total_merchant": 0,
"on_page": {
"task_post": 0,
"tasks_ready": 20,
"summary": 0,
"resources": 0,
"pages": 0,
"non_indexable": 0,
"duplicate_tags": 0,
"links": 0,
"waterfall": 0,
"errors": 10,
"pages_by_resource": 0,
"duplicate_content": 0,
"raw_html": 0,
"instant_pages": 0,
"redirect_chains": 0,
"lighthouse": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"keyword_density": 0,
"page_screenshot": 0,
"content_parsing": 0,
"content_parsing_live": 0
},
"total_on_page": 0,
"business_data": {
"google": {
"my_business_info": {
"task_post": 0,
"tasks_ready": 20,
"task_get": 0,
"live": 0
},
"my_business_updates": {
"task_post": 0,
"tasks_ready": 20,
"task_get": 0
},
"hotel_info": {
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"tasks_ready": 20,
"live": {
"advanced": 0,
"html": 0
}
},
"hotel_searches": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 20,
"live": 0
},
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 20
},
"questions_and_answers": {
"task_post": 0,
"live": 0,
"tasks_ready": 0,
"task_get": 0
},
"extended_reviews": {
"task_post": 0,
"task_get": 0
}
},
"locations": 0,
"languages": 0,
"errors": 10,
"yelp": {
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 20
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"social_media": {
"facebook": {
"live": 0
},
"pinterest": {
"live": 0
},
"reddit": {
"live": 0
}
},
"tripadvisor": {
"reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"trustpilot": {
"reviews": {
"task_get": 0,
"tasks_ready": 0,
"task_post": 0
},
"search": {
"tasks_ready": 0,
"task_get": 0,
"task_post": 0
}
},
"business_listings": {
"search": {
"live": 0
},
"categories_aggregation": {
"live": 0
},
"categories": 0,
"locations": 0
},
"tasks_ready": 0
},
"total_business_data": 0,
"backlinks": {
"summary": {
"live": 0
},
"history": {
"live": 0
},
"content_duplicates": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"backlinks": {
"live": 0
},
"domain_pages": {
"live": 0
},
"anchors": {
"live": 0
},
"referring_domains": {
"live": 0
},
"page_intersection": {
"live": 0
},
"referring_networks": {
"live": 0
},
"bulk_ranks": {
"live": 0
},
"bulk_backlinks": {
"live": 0
},
"bulk_new_lost_backlinks": {
"live": 0
},
"bulk_new_lost_referring_domains": {
"live": 0
},
"bulk_referring_domains": {
"live": 0
},
"errors": 0,
"domain_pages_summary": {
"live": 0
},
"timeseries_summary": {
"live": 0
},
"timeseries_new_lost_summary": {
"live": 0
},
"competitors": {
"live": 0
},
"bulk_spam_score": {
"live": 0
},
"bulk_pages_summary": {
"live": 0
}
},
"total_backlinks": 0,
"app_data": {
"app_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_list": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
},
"app_searches": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"errors": 0,
"languages": 0,
"locations": 0,
"categories": 0,
"app_listings": {
"categories_aggregation": {
"live": 0
},
"search": {
"live": 0
}
},
"tasks_ready": 0
},
"total_app_data": 0,
"content_analysis": {
"search": {
"live": 0
},
"summary": {
"live": 0
},
"sentiment_analysis": {
"live": 0
},
"rating_distribution": {
"live": 0
},
"phrase_trends": {
"live": 0
},
"category_trends": {
"live": 0
},
"locations": 0,
"languages": 0,
"categories": 0,
"errors": 0
},
"total_content_analysis": 0,
"content_generation": {
"generate": {
"live": 0
},
"generate_meta_tags": {
"live": 0
},
"generate_text": {
"live": 0
},
"paraphrase": {
"live": 0
},
"check_grammar": {
"live": 0,
"languages": 0
},
"text_summary": {
"live": 0,
"languages": 0
},
"generate_sub_topics": {
"live": 0
}
},
"total_content_generation": 0,
"total_traffic_analytics": 0,
"traffic_analytics": {
"tasks_ready": 40,
"errors": 10
},
"total_reviews": 0,
"reviews": {
"tasks_ready": 40,
"errors": 100
},
"total_social": 0,
"social": {
"errors": 100
}
}
},
"statistics": {
"day": {
"serp": {
"task_post": 0,
"task_get": {
"regular": 0,
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"locations": 0,
"languages": 0,
"live": {
"regular": 0,
"advanced": 0,
"html": 0
},
"errors": 0,
"tasks_fixed": 0,
"jobs": {
"task_post": 0
},
"screenshot": 0
},
"total": 0,
"total_serp": 0,
"keywords_data": {
"keywords_for_keywords": {
"task_post": 0,
"task_get": 0
},
"keywords_for_site": {
"task_post": 0,
"task_get": 0
},
"search_volume": {
"task_post": 0,
"task_get": 0
},
"ad_traffic_by_keywords": {
"task_post": 0,
"task_get": 0
},
"languages": 0,
"locations": 0,
"tasks_ready": 0,
"explore": {
"task_post": 0,
"task_get": 0,
"live": 0
},
"categories": 0,
"errors": 0,
"bing": {
"keyword_performance": {
"live": 0
},
"search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"audience_estimation": {
"live": 0
},
"keyword_suggestions_for_url": {
"live": 0
}
},
"keyword_performance": {
"task_get": 0,
"task_post": 0
},
"locations_and_languages": 0,
"google_ads": {
"status": 0,
"search_volume": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"ad_traffic_by_keywords": {
"live": 0
}
},
"dataforseo_trends": {
"explore": {
"live": 0
},
"subregion_interests": {
"live": 0
},
"demography": {
"live": 0
},
"merged_data": {
"live": 0
}
},
"clickstream_data": {
"dataforseo_search_volume": {
"live": 0
},
"locations_and_languages": 0,
"bulk_search_volume": {
"live": 0
},
"global_search_volume": {
"live": 0
}
},
"audience_estimation": {
"task_post": 0,
"task_get": 0
},
"keyword_suggestions_for_url": {
"task_post": 0,
"task_get": 0
}
},
"total_keywords_data": 0,
"appendix": {
"user_data": 0,
"errors": 0
},
"total_appendix": 0,
"dataforseo_labs": {
"locations_and_languages": 0,
"categories": 0,
"errors": 0,
"product_competitors": {
"live": 0
},
"product_keyword_intersections": {
"live": 0
},
"product_rank_overview": {
"live": 0
},
"ranked_keywords": {
"live": 0
},
"serp_competitors": {
"live": 0
},
"subdomains": {
"live": 0
},
"relevant_pages": {
"live": 0
},
"competitors_domain": {
"live": 0
},
"related_keywords": {
"live": 0
},
"domain_rank_overview": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"page_intersection": {
"live": 0
},
"bulk_traffic_estimation": {
"live": 0
},
"bulk_keyword_difficulty": {
"live": 0
},
"bulk_search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keyword_suggestions": {
"live": 0
},
"keyword_ideas": {
"live": 0
},
"historical_search_volume": {
"live": 0
},
"categories_for_domain": {
"live": 0
},
"domain_metrics_by_categories": {
"live": 0
},
"top_searches": {
"live": 0
},
"domain_whois_overview": {
"live": 0
},
"historical_rank_overview": {
"live": 0
},
"keywords_for_categories": {
"live": 0
},
"historical_serps": {
"live": 0
},
"app_competitors": {
"live": 0
},
"keywords_for_app": {
"live": 0
},
"app_intersection": {
"live": 0
},
"bulk_app_metrics": {
"live": 0
},
"search_intent": {
"live": 0
},
"historical_bulk_traffic_estimation": {
"live": 0
},
"categories_for_keywords": {
"live": 0
},
"keyword_overview": {
"live": 0
},
"historical_keyword_data": {
"live": 0
}
},
"total_dataforseo_labs": 0,
"domain_analytics": {
"tasks_ready": 0,
"errors": 0,
"whois": {
"overview": {
"live": 0
}
},
"technologies": {
"domain_technologies": {
"live": 0
},
"domains_by_technology": {
"live": 0
},
"languages": 0,
"locations": 0,
"technologies": 0,
"aggregation_technologies": {
"live": 0
},
"technologies_summary": {
"live": 0
},
"domains_by_html_terms": {
"live": 0
},
"technology_stats": {
"live": 0
}
}
},
"total_domain_analytics": 0,
"merchant": {
"google": {
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"ad_url": 0
},
"product_spec": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"product_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
}
},
"amazon": {
"asin": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"reviews": {
"tasks_ready": 0,
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"tasks_ready": 0
},
"total_merchant": 0,
"on_page": {
"task_post": 0,
"tasks_ready": 0,
"summary": 0,
"resources": 0,
"pages": 0,
"non_indexable": 0,
"duplicate_tags": 0,
"links": 0,
"waterfall": 0,
"errors": 0,
"pages_by_resource": 0,
"duplicate_content": 0,
"raw_html": 0,
"instant_pages": 0,
"redirect_chains": 0,
"lighthouse": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"keyword_density": 0,
"page_screenshot": 0,
"content_parsing": 0,
"content_parsing_live": 0
},
"total_on_page": 0,
"business_data": {
"google": {
"my_business_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"my_business_updates": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"hotel_info": {
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"live": {
"advanced": 0,
"html": 0
}
},
"hotel_searches": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0,
"live": 0
},
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"questions_and_answers": {
"task_post": 0,
"live": 0,
"tasks_ready": 0,
"task_get": 0
},
"extended_reviews": {
"task_post": 0,
"task_get": 0
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"yelp": {
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"social_media": {
"facebook": {
"live": 0
},
"pinterest": {
"live": 0
},
"reddit": {
"live": 0
}
},
"tripadvisor": {
"reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"trustpilot": {
"reviews": {
"task_get": 0,
"tasks_ready": 0,
"task_post": 0
},
"search": {
"tasks_ready": 0,
"task_get": 0,
"task_post": 0
}
},
"business_listings": {
"search": {
"live": 0
},
"categories_aggregation": {
"live": 0
},
"categories": 0,
"locations": 0
},
"tasks_ready": 0
},
"total_business_data": 0,
"backlinks": {
"summary": {
"live": 0
},
"history": {
"live": 0
},
"content_duplicates": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"backlinks": {
"live": 0
},
"domain_pages": {
"live": 0
},
"anchors": {
"live": 0
},
"referring_domains": {
"live": 0
},
"page_intersection": {
"live": 0
},
"referring_networks": {
"live": 0
},
"bulk_ranks": {
"live": 0
},
"bulk_backlinks": {
"live": 0
},
"bulk_new_lost_backlinks": {
"live": 0
},
"bulk_new_lost_referring_domains": {
"live": 0
},
"bulk_referring_domains": {
"live": 0
},
"errors": 0,
"domain_pages_summary": {
"live": 0
},
"timeseries_summary": {
"live": 0
},
"timeseries_new_lost_summary": {
"live": 0
},
"competitors": {
"live": 0
},
"bulk_spam_score": {
"live": 0
},
"bulk_pages_summary": {
"live": 0
}
},
"total_backlinks": 0,
"app_data": {
"app_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_list": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
},
"app_searches": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"errors": 0,
"languages": 0,
"locations": 0,
"categories": 0,
"app_listings": {
"categories_aggregation": {
"live": 0
},
"search": {
"live": 0
}
},
"tasks_ready": 0
},
"total_app_data": 0,
"content_analysis": {
"search": {
"live": 0
},
"summary": {
"live": 0
},
"sentiment_analysis": {
"live": 0
},
"rating_distribution": {
"live": 0
},
"phrase_trends": {
"live": 0
},
"category_trends": {
"live": 0
},
"locations": 0,
"languages": 0,
"categories": 0,
"errors": 0
},
"total_content_analysis": 0,
"content_generation": {
"generate": {
"live": 0
},
"generate_meta_tags": {
"live": 0
},
"generate_text": {
"live": 0
},
"paraphrase": {
"live": 0
},
"check_grammar": {
"live": 0,
"languages": 0
},
"text_summary": {
"live": 0,
"languages": 0
},
"generate_sub_topics": {
"live": 0
}
},
"total_content_generation": 0,
"value": "2025-05-29"
},
"minute": {
"serp": {
"task_post": 0,
"task_get": {
"regular": 0,
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"locations": 0,
"languages": 0,
"live": {
"regular": 0,
"advanced": 0,
"html": 0
},
"errors": 0,
"tasks_fixed": 0,
"jobs": {
"task_post": 0
},
"screenshot": 0
},
"total": 0,
"total_serp": 0,
"keywords_data": {
"keywords_for_keywords": {
"task_post": 0,
"task_get": 0
},
"keywords_for_site": {
"task_post": 0,
"task_get": 0
},
"search_volume": {
"task_post": 0,
"task_get": 0
},
"ad_traffic_by_keywords": {
"task_post": 0,
"task_get": 0
},
"languages": 0,
"locations": 0,
"tasks_ready": 0,
"explore": {
"task_post": 0,
"task_get": 0,
"live": 0
},
"categories": 0,
"errors": 0,
"bing": {
"keyword_performance": {
"live": 0
},
"search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"audience_estimation": {
"live": 0
},
"keyword_suggestions_for_url": {
"live": 0
}
},
"keyword_performance": {
"task_get": 0,
"task_post": 0
},
"locations_and_languages": 0,
"google_ads": {
"status": 0,
"search_volume": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"ad_traffic_by_keywords": {
"live": 0
}
},
"dataforseo_trends": {
"explore": {
"live": 0
},
"subregion_interests": {
"live": 0
},
"demography": {
"live": 0
},
"merged_data": {
"live": 0
}
},
"clickstream_data": {
"dataforseo_search_volume": {
"live": 0
},
"locations_and_languages": 0,
"bulk_search_volume": {
"live": 0
},
"global_search_volume": {
"live": 0
}
},
"audience_estimation": {
"task_post": 0,
"task_get": 0
},
"keyword_suggestions_for_url": {
"task_post": 0,
"task_get": 0
}
},
"total_keywords_data": 0,
"appendix": {
"user_data": 0,
"errors": 0
},
"total_appendix": 0,
"dataforseo_labs": {
"locations_and_languages": 0,
"categories": 0,
"errors": 0,
"product_competitors": {
"live": 0
},
"product_keyword_intersections": {
"live": 0
},
"product_rank_overview": {
"live": 0
},
"ranked_keywords": {
"live": 0
},
"serp_competitors": {
"live": 0
},
"subdomains": {
"live": 0
},
"relevant_pages": {
"live": 0
},
"competitors_domain": {
"live": 0
},
"related_keywords": {
"live": 0
},
"domain_rank_overview": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"page_intersection": {
"live": 0
},
"bulk_traffic_estimation": {
"live": 0
},
"bulk_keyword_difficulty": {
"live": 0
},
"bulk_search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keyword_suggestions": {
"live": 0
},
"keyword_ideas": {
"live": 0
},
"historical_search_volume": {
"live": 0
},
"categories_for_domain": {
"live": 0
},
"domain_metrics_by_categories": {
"live": 0
},
"top_searches": {
"live": 0
},
"domain_whois_overview": {
"live": 0
},
"historical_rank_overview": {
"live": 0
},
"keywords_for_categories": {
"live": 0
},
"historical_serps": {
"live": 0
},
"app_competitors": {
"live": 0
},
"keywords_for_app": {
"live": 0
},
"app_intersection": {
"live": 0
},
"bulk_app_metrics": {
"live": 0
},
"search_intent": {
"live": 0
},
"historical_bulk_traffic_estimation": {
"live": 0
},
"categories_for_keywords": {
"live": 0
},
"keyword_overview": {
"live": 0
},
"historical_keyword_data": {
"live": 0
}
},
"total_dataforseo_labs": 0,
"domain_analytics": {
"tasks_ready": 0,
"errors": 0,
"whois": {
"overview": {
"live": 0
}
},
"technologies": {
"domain_technologies": {
"live": 0
},
"domains_by_technology": {
"live": 0
},
"languages": 0,
"locations": 0,
"technologies": 0,
"aggregation_technologies": {
"live": 0
},
"technologies_summary": {
"live": 0
},
"domains_by_html_terms": {
"live": 0
},
"technology_stats": {
"live": 0
}
}
},
"total_domain_analytics": 0,
"merchant": {
"google": {
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"ad_url": 0
},
"product_spec": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"product_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
}
},
"amazon": {
"asin": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"reviews": {
"tasks_ready": 0,
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"tasks_ready": 0
},
"total_merchant": 0,
"on_page": {
"task_post": 0,
"tasks_ready": 0,
"summary": 0,
"resources": 0,
"pages": 0,
"non_indexable": 0,
"duplicate_tags": 0,
"links": 0,
"waterfall": 0,
"errors": 0,
"pages_by_resource": 0,
"duplicate_content": 0,
"raw_html": 0,
"instant_pages": 0,
"redirect_chains": 0,
"lighthouse": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"keyword_density": 0,
"page_screenshot": 0,
"content_parsing": 0,
"content_parsing_live": 0
},
"total_on_page": 0,
"business_data": {
"google": {
"my_business_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"my_business_updates": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"hotel_info": {
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"live": {
"advanced": 0,
"html": 0
}
},
"hotel_searches": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0,
"live": 0
},
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"questions_and_answers": {
"task_post": 0,
"live": 0,
"tasks_ready": 0,
"task_get": 0
},
"extended_reviews": {
"task_post": 0,
"task_get": 0
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"yelp": {
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"social_media": {
"facebook": {
"live": 0
},
"pinterest": {
"live": 0
},
"reddit": {
"live": 0
}
},
"tripadvisor": {
"reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"trustpilot": {
"reviews": {
"task_get": 0,
"tasks_ready": 0,
"task_post": 0
},
"search": {
"tasks_ready": 0,
"task_get": 0,
"task_post": 0
}
},
"business_listings": {
"search": {
"live": 0
},
"categories_aggregation": {
"live": 0
},
"categories": 0,
"locations": 0
},
"tasks_ready": 0
},
"total_business_data": 0,
"backlinks": {
"summary": {
"live": 0
},
"history": {
"live": 0
},
"content_duplicates": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"backlinks": {
"live": 0
},
"domain_pages": {
"live": 0
},
"anchors": {
"live": 0
},
"referring_domains": {
"live": 0
},
"page_intersection": {
"live": 0
},
"referring_networks": {
"live": 0
},
"bulk_ranks": {
"live": 0
},
"bulk_backlinks": {
"live": 0
},
"bulk_new_lost_backlinks": {
"live": 0
},
"bulk_new_lost_referring_domains": {
"live": 0
},
"bulk_referring_domains": {
"live": 0
},
"errors": 0,
"domain_pages_summary": {
"live": 0
},
"timeseries_summary": {
"live": 0
},
"timeseries_new_lost_summary": {
"live": 0
},
"competitors": {
"live": 0
},
"bulk_spam_score": {
"live": 0
},
"bulk_pages_summary": {
"live": 0
}
},
"total_backlinks": 0,
"app_data": {
"app_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_list": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
},
"app_searches": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"errors": 0,
"languages": 0,
"locations": 0,
"categories": 0,
"app_listings": {
"categories_aggregation": {
"live": 0
},
"search": {
"live": 0
}
},
"tasks_ready": 0
},
"total_app_data": 0,
"content_analysis": {
"search": {
"live": 0
},
"summary": {
"live": 0
},
"sentiment_analysis": {
"live": 0
},
"rating_distribution": {
"live": 0
},
"phrase_trends": {
"live": 0
},
"category_trends": {
"live": 0
},
"locations": 0,
"languages": 0,
"categories": 0,
"errors": 0
},
"total_content_analysis": 0,
"content_generation": {
"generate": {
"live": 0
},
"generate_meta_tags": {
"live": 0
},
"generate_text": {
"live": 0
},
"paraphrase": {
"live": 0
},
"check_grammar": {
"live": 0,
"languages": 0
},
"text_summary": {
"live": 0,
"languages": 0
},
"generate_sub_topics": {
"live": 0
}
},
"total_content_generation": 0,
"value": "2025-05-29 16:03"
}
}
},
"money": {
"total": 1,
"balance": -3809.628325,
"limits": {
"day": {
"serp": {
"task_post": 0,
"task_get": {
"regular": 0,
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"locations": 0,
"languages": 0,
"live": {
"regular": 0,
"advanced": 0,
"html": 0
},
"errors": 0,
"tasks_fixed": 0,
"jobs": {
"task_post": 0
},
"screenshot": 0,
"tasks_ready_queue": 0
},
"total": 0,
"total_serp": 0,
"keywords_data": {
"keywords_for_keywords": {
"task_post": 0,
"task_get": 0
},
"keywords_for_site": {
"task_post": 0,
"task_get": 0
},
"search_volume": {
"task_post": 0,
"task_get": 0
},
"ad_traffic_by_keywords": {
"task_post": 0,
"task_get": 0
},
"languages": 0,
"locations": 0,
"tasks_ready": 0,
"explore": {
"task_post": 0,
"task_get": 0,
"live": 0
},
"categories": 0,
"errors": 0,
"bing": {
"keyword_performance": {
"live": 0
},
"search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"audience_estimation": {
"live": 0
},
"keyword_suggestions_for_url": {
"live": 0
}
},
"keyword_performance": {
"task_get": 0,
"task_post": 0
},
"locations_and_languages": 0,
"google_ads": {
"status": 0,
"search_volume": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"ad_traffic_by_keywords": {
"live": 0
}
},
"dataforseo_trends": {
"explore": {
"live": 0
},
"subregion_interests": {
"live": 0
},
"demography": {
"live": 0
},
"merged_data": {
"live": 0
}
},
"clickstream_data": {
"dataforseo_search_volume": {
"live": 0
},
"locations_and_languages": 0,
"bulk_search_volume": {
"live": 0
},
"global_search_volume": {
"live": 0
}
},
"audience_estimation": {
"task_post": 0,
"task_get": 0
},
"keyword_suggestions_for_url": {
"task_post": 0,
"task_get": 0
},
"naver": {
"keywords_for_category": {
"live": 0
},
"search_volume": {
"live": 0
}
},
"google": {
"keywords_for_site": {
"live": 0
},
"search_volume": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
}
},
"keyword_ideas_ads_api": {
"tasks_ready": 0
}
},
"total_keywords_data": 0,
"appendix": {
"user_data": 0,
"errors": 0,
"status": 0,
"test": 0
},
"total_appendix": 0,
"dataforseo_labs": {
"locations_and_languages": 0,
"categories": 0,
"errors": 0,
"product_competitors": {
"live": 0
},
"product_keyword_intersections": {
"live": 0
},
"product_rank_overview": {
"live": 0
},
"ranked_keywords": {
"live": 0
},
"serp_competitors": {
"live": 0
},
"subdomains": {
"live": 0
},
"relevant_pages": {
"live": 0
},
"competitors_domain": {
"live": 0
},
"related_keywords": {
"live": 0
},
"domain_rank_overview": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"page_intersection": {
"live": 0
},
"bulk_traffic_estimation": {
"live": 0
},
"bulk_keyword_difficulty": {
"live": 0
},
"bulk_search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keyword_suggestions": {
"live": 0
},
"keyword_ideas": {
"live": 0
},
"historical_search_volume": {
"live": 0
},
"categories_for_domain": {
"live": 0
},
"domain_metrics_by_categories": {
"live": 0
},
"top_searches": {
"live": 0
},
"domain_whois_overview": {
"live": 0
},
"historical_rank_overview": {
"live": 0
},
"keywords_for_categories": {
"live": 0
},
"historical_serps": {
"live": 0
},
"app_competitors": {
"live": 0
},
"keywords_for_app": {
"live": 0
},
"app_intersection": {
"live": 0
},
"bulk_app_metrics": {
"live": 0
},
"search_intent": {
"live": 0
},
"historical_bulk_traffic_estimation": {
"live": 0
},
"categories_for_keywords": {
"live": 0
},
"keyword_overview": {
"live": 0
},
"historical_keyword_data": {
"live": 0
}
},
"total_dataforseo_labs": 0,
"domain_analytics": {
"tasks_ready": 0,
"errors": 0,
"whois": {
"overview": {
"live": 0
}
},
"technologies": {
"domain_technologies": {
"live": 0
},
"domains_by_technology": {
"live": 0
},
"languages": 0,
"locations": 0,
"technologies": 0,
"aggregation_technologies": {
"live": 0
},
"technologies_summary": {
"live": 0
},
"domains_by_html_terms": {
"live": 0
},
"technology_stats": {
"live": 0
}
}
},
"total_domain_analytics": 0,
"merchant": {
"google": {
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"ad_url": 0
},
"product_spec": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"product_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
}
},
"amazon": {
"asin": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"reviews": {
"tasks_ready": 0,
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"tasks_ready": 0
},
"total_merchant": 0,
"on_page": {
"task_post": 0,
"tasks_ready": 0,
"summary": 0,
"resources": 0,
"pages": 0,
"non_indexable": 0,
"duplicate_tags": 0,
"links": 0,
"waterfall": 0,
"errors": 0,
"pages_by_resource": 0,
"duplicate_content": 0,
"raw_html": 0,
"instant_pages": 0,
"redirect_chains": 0,
"lighthouse": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"keyword_density": 0,
"page_screenshot": 0,
"content_parsing": 0,
"content_parsing_live": 0
},
"total_on_page": 0,
"business_data": {
"google": {
"my_business_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"my_business_updates": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"hotel_info": {
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"live": {
"advanced": 0,
"html": 0
}
},
"hotel_searches": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0,
"live": 0
},
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"questions_and_answers": {
"task_post": 0,
"live": 0,
"tasks_ready": 0,
"task_get": 0
},
"extended_reviews": {
"task_post": 0,
"task_get": 0
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"yelp": {
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"social_media": {
"facebook": {
"live": 0
},
"pinterest": {
"live": 0
},
"reddit": {
"live": 0
}
},
"tripadvisor": {
"reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"trustpilot": {
"reviews": {
"task_get": 0,
"tasks_ready": 0,
"task_post": 0
},
"search": {
"tasks_ready": 0,
"task_get": 0,
"task_post": 0
}
},
"business_listings": {
"search": {
"live": 0
},
"categories_aggregation": {
"live": 0
},
"categories": 0,
"locations": 0
},
"tasks_ready": 0
},
"total_business_data": 0,
"backlinks": {
"summary": {
"live": 0
},
"history": {
"live": 0
},
"content_duplicates": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"backlinks": {
"live": 0
},
"domain_pages": {
"live": 0
},
"anchors": {
"live": 0
},
"referring_domains": {
"live": 0
},
"page_intersection": {
"live": 0
},
"referring_networks": {
"live": 0
},
"bulk_ranks": {
"live": 0
},
"bulk_backlinks": {
"live": 0
},
"bulk_new_lost_backlinks": {
"live": 0
},
"bulk_new_lost_referring_domains": {
"live": 0
},
"bulk_referring_domains": {
"live": 0
},
"errors": 0,
"domain_pages_summary": {
"live": 0
},
"timeseries_summary": {
"live": 0
},
"timeseries_new_lost_summary": {
"live": 0
},
"competitors": {
"live": 0
},
"bulk_spam_score": {
"live": 0
},
"bulk_pages_summary": {
"live": 0
}
},
"total_backlinks": 0,
"app_data": {
"app_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_list": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
},
"app_searches": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"errors": 0,
"languages": 0,
"locations": 0,
"categories": 0,
"app_listings": {
"categories_aggregation": {
"live": 0
},
"search": {
"live": 0
}
},
"tasks_ready": 0
},
"total_app_data": 0,
"content_analysis": {
"search": {
"live": 0
},
"summary": {
"live": 0
},
"sentiment_analysis": {
"live": 0
},
"rating_distribution": {
"live": 0
},
"phrase_trends": {
"live": 0
},
"category_trends": {
"live": 0
},
"locations": 0,
"languages": 0,
"categories": 0,
"errors": 0
},
"total_content_analysis": 0,
"content_generation": {
"generate": {
"live": 0
},
"generate_meta_tags": {
"live": 0
},
"generate_text": {
"live": 0
},
"paraphrase": {
"live": 0
},
"check_grammar": {
"live": 0,
"languages": 0
},
"text_summary": {
"live": 0,
"languages": 0
},
"generate_sub_topics": {
"live": 0
}
},
"total_content_generation": 0,
"total_traffic_analytics": 0,
"traffic_analytics": {
"tasks_ready": 0,
"errors": 0
},
"total_reviews": 0,
"reviews": {
"tasks_ready": 0,
"errors": 0
},
"total_social": 0,
"social": {
"errors": 0
}
},
"minute": {
"serp": {
"task_post": 0,
"task_get": {
"regular": 0,
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"locations": 0,
"languages": 0,
"live": {
"regular": 0,
"advanced": 0,
"html": 0
},
"errors": 0,
"tasks_fixed": 0,
"jobs": {
"task_post": 0
},
"screenshot": 0,
"tasks_ready_queue": 0
},
"total": 0,
"total_serp": 0,
"keywords_data": {
"keywords_for_keywords": {
"task_post": 0,
"task_get": 0
},
"keywords_for_site": {
"task_post": 0,
"task_get": 0
},
"search_volume": {
"task_post": 0,
"task_get": 0
},
"ad_traffic_by_keywords": {
"task_post": 0,
"task_get": 0
},
"languages": 0,
"locations": 0,
"tasks_ready": 0,
"explore": {
"task_post": 0,
"task_get": 0,
"live": 0
},
"categories": 0,
"errors": 0,
"bing": {
"keyword_performance": {
"live": 0
},
"search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"audience_estimation": {
"live": 0
},
"keyword_suggestions_for_url": {
"live": 0
}
},
"keyword_performance": {
"task_get": 0,
"task_post": 0
},
"locations_and_languages": 0,
"google_ads": {
"status": 0,
"search_volume": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"ad_traffic_by_keywords": {
"live": 0
}
},
"dataforseo_trends": {
"explore": {
"live": 0
},
"subregion_interests": {
"live": 0
},
"demography": {
"live": 0
},
"merged_data": {
"live": 0
}
},
"clickstream_data": {
"dataforseo_search_volume": {
"live": 0
},
"locations_and_languages": 0,
"bulk_search_volume": {
"live": 0
},
"global_search_volume": {
"live": 0
}
},
"audience_estimation": {
"task_post": 0,
"task_get": 0
},
"keyword_suggestions_for_url": {
"task_post": 0,
"task_get": 0
},
"naver": {
"keywords_for_category": {
"live": 0
},
"search_volume": {
"live": 0
}
},
"google": {
"keywords_for_site": {
"live": 0
},
"search_volume": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
}
},
"keyword_ideas_ads_api": {
"tasks_ready": 0
}
},
"total_keywords_data": 0,
"appendix": {
"user_data": 0,
"errors": 0,
"status": 0,
"test": 0
},
"total_appendix": 0,
"dataforseo_labs": {
"locations_and_languages": 0,
"categories": 0,
"errors": 0,
"product_competitors": {
"live": 0
},
"product_keyword_intersections": {
"live": 0
},
"product_rank_overview": {
"live": 0
},
"ranked_keywords": {
"live": 0
},
"serp_competitors": {
"live": 0
},
"subdomains": {
"live": 0
},
"relevant_pages": {
"live": 0
},
"competitors_domain": {
"live": 0
},
"related_keywords": {
"live": 0
},
"domain_rank_overview": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"page_intersection": {
"live": 0
},
"bulk_traffic_estimation": {
"live": 0
},
"bulk_keyword_difficulty": {
"live": 0
},
"bulk_search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keyword_suggestions": {
"live": 0
},
"keyword_ideas": {
"live": 0
},
"historical_search_volume": {
"live": 0
},
"categories_for_domain": {
"live": 0
},
"domain_metrics_by_categories": {
"live": 0
},
"top_searches": {
"live": 0
},
"domain_whois_overview": {
"live": 0
},
"historical_rank_overview": {
"live": 0
},
"keywords_for_categories": {
"live": 0
},
"historical_serps": {
"live": 0
},
"app_competitors": {
"live": 0
},
"keywords_for_app": {
"live": 0
},
"app_intersection": {
"live": 0
},
"bulk_app_metrics": {
"live": 0
},
"search_intent": {
"live": 0
},
"historical_bulk_traffic_estimation": {
"live": 0
},
"categories_for_keywords": {
"live": 0
},
"keyword_overview": {
"live": 0
},
"historical_keyword_data": {
"live": 0
}
},
"total_dataforseo_labs": 0,
"domain_analytics": {
"tasks_ready": 0,
"errors": 0,
"whois": {
"overview": {
"live": 0
}
},
"technologies": {
"domain_technologies": {
"live": 0
},
"domains_by_technology": {
"live": 0
},
"languages": 0,
"locations": 0,
"technologies": 0,
"aggregation_technologies": {
"live": 0
},
"technologies_summary": {
"live": 0
},
"domains_by_html_terms": {
"live": 0
},
"technology_stats": {
"live": 0
}
}
},
"total_domain_analytics": 0,
"merchant": {
"google": {
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"ad_url": 0
},
"product_spec": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"product_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
}
},
"amazon": {
"asin": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"reviews": {
"tasks_ready": 0,
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"tasks_ready": 0
},
"total_merchant": 0,
"on_page": {
"task_post": 0,
"tasks_ready": 0,
"summary": 0,
"resources": 0,
"pages": 0,
"non_indexable": 0,
"duplicate_tags": 0,
"links": 0,
"waterfall": 0,
"errors": 0,
"pages_by_resource": 0,
"duplicate_content": 0,
"raw_html": 0,
"instant_pages": 0,
"redirect_chains": 0,
"lighthouse": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"keyword_density": 0,
"page_screenshot": 0,
"content_parsing": 0,
"content_parsing_live": 0
},
"total_on_page": 0,
"business_data": {
"google": {
"my_business_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"my_business_updates": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"hotel_info": {
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"live": {
"advanced": 0,
"html": 0
}
},
"hotel_searches": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0,
"live": 0
},
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"questions_and_answers": {
"task_post": 0,
"live": 0,
"tasks_ready": 0,
"task_get": 0
},
"extended_reviews": {
"task_post": 0,
"task_get": 0
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"yelp": {
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"social_media": {
"facebook": {
"live": 0
},
"pinterest": {
"live": 0
},
"reddit": {
"live": 0
}
},
"tripadvisor": {
"reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"trustpilot": {
"reviews": {
"task_get": 0,
"tasks_ready": 0,
"task_post": 0
},
"search": {
"tasks_ready": 0,
"task_get": 0,
"task_post": 0
}
},
"business_listings": {
"search": {
"live": 0
},
"categories_aggregation": {
"live": 0
},
"categories": 0,
"locations": 0
},
"tasks_ready": 0
},
"total_business_data": 0,
"backlinks": {
"summary": {
"live": 0
},
"history": {
"live": 0
},
"content_duplicates": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"backlinks": {
"live": 0
},
"domain_pages": {
"live": 0
},
"anchors": {
"live": 0
},
"referring_domains": {
"live": 0
},
"page_intersection": {
"live": 0
},
"referring_networks": {
"live": 0
},
"bulk_ranks": {
"live": 0
},
"bulk_backlinks": {
"live": 0
},
"bulk_new_lost_backlinks": {
"live": 0
},
"bulk_new_lost_referring_domains": {
"live": 0
},
"bulk_referring_domains": {
"live": 0
},
"errors": 0,
"domain_pages_summary": {
"live": 0
},
"timeseries_summary": {
"live": 0
},
"timeseries_new_lost_summary": {
"live": 0
},
"competitors": {
"live": 0
},
"bulk_spam_score": {
"live": 0
},
"bulk_pages_summary": {
"live": 0
}
},
"total_backlinks": 0,
"app_data": {
"app_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_list": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
},
"app_searches": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"errors": 0,
"languages": 0,
"locations": 0,
"categories": 0,
"app_listings": {
"categories_aggregation": {
"live": 0
},
"search": {
"live": 0
}
},
"tasks_ready": 0
},
"total_app_data": 0,
"content_analysis": {
"search": {
"live": 0
},
"summary": {
"live": 0
},
"sentiment_analysis": {
"live": 0
},
"rating_distribution": {
"live": 0
},
"phrase_trends": {
"live": 0
},
"category_trends": {
"live": 0
},
"locations": 0,
"languages": 0,
"categories": 0,
"errors": 0
},
"total_content_analysis": 0,
"content_generation": {
"generate": {
"live": 0
},
"generate_meta_tags": {
"live": 0
},
"generate_text": {
"live": 0
},
"paraphrase": {
"live": 0
},
"check_grammar": {
"live": 0,
"languages": 0
},
"text_summary": {
"live": 0,
"languages": 0
},
"generate_sub_topics": {
"live": 0
}
},
"total_content_generation": 0,
"total_traffic_analytics": 0,
"traffic_analytics": {
"tasks_ready": 0,
"errors": 0
},
"total_reviews": 0,
"reviews": {
"tasks_ready": 0,
"errors": 0
},
"total_social": 0,
"social": {
"errors": 0
}
}
},
"statistics": {
"day": {
"serp": {
"task_post": 0,
"task_get": {
"regular": 0,
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"locations": 0,
"languages": 0,
"live": {
"regular": 0,
"advanced": 0,
"html": 0
},
"errors": 0,
"tasks_fixed": 0,
"jobs": {
"task_post": 0
},
"screenshot": 0
},
"total": 0.557935,
"total_serp": 0,
"keywords_data": {
"keywords_for_keywords": {
"task_post": 0,
"task_get": 0
},
"keywords_for_site": {
"task_post": 0,
"task_get": 0
},
"search_volume": {
"task_post": 0,
"task_get": 0
},
"ad_traffic_by_keywords": {
"task_post": 0,
"task_get": 0
},
"languages": 0,
"locations": 0,
"tasks_ready": 0,
"explore": {
"task_post": 0,
"task_get": 0,
"live": 0
},
"categories": 0,
"errors": 0,
"bing": {
"keyword_performance": {
"live": 0
},
"search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"audience_estimation": {
"live": 0
},
"keyword_suggestions_for_url": {
"live": 0
}
},
"keyword_performance": {
"task_get": 0,
"task_post": 0
},
"locations_and_languages": 0,
"google_ads": {
"status": 0,
"search_volume": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"ad_traffic_by_keywords": {
"live": 0
}
},
"dataforseo_trends": {
"explore": {
"live": 0
},
"subregion_interests": {
"live": 0
},
"demography": {
"live": 0
},
"merged_data": {
"live": 0
}
},
"clickstream_data": {
"dataforseo_search_volume": {
"live": 0
},
"locations_and_languages": 0,
"bulk_search_volume": {
"live": 0
},
"global_search_volume": {
"live": 0
}
},
"audience_estimation": {
"task_post": 0,
"task_get": 0
},
"keyword_suggestions_for_url": {
"task_post": 0,
"task_get": 0
}
},
"total_keywords_data": 0,
"appendix": {
"user_data": 0,
"errors": 0
},
"total_appendix": 0,
"dataforseo_labs": {
"locations_and_languages": 0,
"categories": 0,
"errors": 0,
"product_competitors": {
"live": 0
},
"product_keyword_intersections": {
"live": 0
},
"product_rank_overview": {
"live": 0
},
"ranked_keywords": {
"live": 0
},
"serp_competitors": {
"live": 0
},
"subdomains": {
"live": 0
},
"relevant_pages": {
"live": 0
},
"competitors_domain": {
"live": 0
},
"related_keywords": {
"live": 0
},
"domain_rank_overview": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"page_intersection": {
"live": 0
},
"bulk_traffic_estimation": {
"live": 0
},
"bulk_keyword_difficulty": {
"live": 0
},
"bulk_search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keyword_suggestions": {
"live": 0
},
"keyword_ideas": {
"live": 0
},
"historical_search_volume": {
"live": 0
},
"categories_for_domain": {
"live": 0
},
"domain_metrics_by_categories": {
"live": 0
},
"top_searches": {
"live": 0
},
"domain_whois_overview": {
"live": 0
},
"historical_rank_overview": {
"live": 0
},
"keywords_for_categories": {
"live": 0
},
"historical_serps": {
"live": 0
},
"app_competitors": {
"live": 0
},
"keywords_for_app": {
"live": 0
},
"app_intersection": {
"live": 0
},
"bulk_app_metrics": {
"live": 0
},
"search_intent": {
"live": 0
},
"historical_bulk_traffic_estimation": {
"live": 0
},
"categories_for_keywords": {
"live": 0
},
"keyword_overview": {
"live": 0
},
"historical_keyword_data": {
"live": 0
}
},
"total_dataforseo_labs": 0,
"domain_analytics": {
"tasks_ready": 0,
"errors": 0,
"whois": {
"overview": {
"live": 0
}
},
"technologies": {
"domain_technologies": {
"live": 0
},
"domains_by_technology": {
"live": 0
},
"languages": 0,
"locations": 0,
"technologies": 0,
"aggregation_technologies": {
"live": 0
},
"technologies_summary": {
"live": 0
},
"domains_by_html_terms": {
"live": 0
},
"technology_stats": {
"live": 0
}
}
},
"total_domain_analytics": 0,
"merchant": {
"google": {
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"ad_url": 0
},
"product_spec": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"product_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
}
},
"amazon": {
"asin": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"reviews": {
"tasks_ready": 0,
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"tasks_ready": 0
},
"total_merchant": 0,
"on_page": {
"task_post": 0,
"tasks_ready": 0,
"summary": 0,
"resources": 0,
"pages": 0,
"non_indexable": 0,
"duplicate_tags": 0,
"links": 0,
"waterfall": 0,
"errors": 0,
"pages_by_resource": 0,
"duplicate_content": 0,
"raw_html": 0,
"instant_pages": 0,
"redirect_chains": 0,
"lighthouse": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"keyword_density": 0,
"page_screenshot": 0,
"content_parsing": 0,
"content_parsing_live": 0
},
"total_on_page": 0,
"business_data": {
"google": {
"my_business_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"my_business_updates": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"hotel_info": {
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"live": {
"advanced": 0,
"html": 0
}
},
"hotel_searches": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0,
"live": 0
},
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"questions_and_answers": {
"task_post": 0,
"live": 0,
"tasks_ready": 0,
"task_get": 0
},
"extended_reviews": {
"task_post": 0,
"task_get": 0
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"yelp": {
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"social_media": {
"facebook": {
"live": 0
},
"pinterest": {
"live": 0
},
"reddit": {
"live": 0
}
},
"tripadvisor": {
"reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"trustpilot": {
"reviews": {
"task_get": 0,
"tasks_ready": 0,
"task_post": 0
},
"search": {
"tasks_ready": 0,
"task_get": 0,
"task_post": 0
}
},
"business_listings": {
"search": {
"live": 0
},
"categories_aggregation": {
"live": 0
},
"categories": 0,
"locations": 0
},
"tasks_ready": 0
},
"total_business_data": 0,
"backlinks": {
"summary": {
"live": 0
},
"history": {
"live": 0
},
"content_duplicates": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"backlinks": {
"live": 0
},
"domain_pages": {
"live": 0
},
"anchors": {
"live": 0
},
"referring_domains": {
"live": 0
},
"page_intersection": {
"live": 0
},
"referring_networks": {
"live": 0
},
"bulk_ranks": {
"live": 0
},
"bulk_backlinks": {
"live": 0
},
"bulk_new_lost_backlinks": {
"live": 0
},
"bulk_new_lost_referring_domains": {
"live": 0
},
"bulk_referring_domains": {
"live": 0
},
"errors": 0,
"domain_pages_summary": {
"live": 0
},
"timeseries_summary": {
"live": 0
},
"timeseries_new_lost_summary": {
"live": 0
},
"competitors": {
"live": 0
},
"bulk_spam_score": {
"live": 0
},
"bulk_pages_summary": {
"live": 0
}
},
"total_backlinks": 0,
"app_data": {
"app_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_list": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
},
"app_searches": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"errors": 0,
"languages": 0,
"locations": 0,
"categories": 0,
"app_listings": {
"categories_aggregation": {
"live": 0
},
"search": {
"live": 0
}
},
"tasks_ready": 0
},
"total_app_data": 0,
"content_analysis": {
"search": {
"live": 0
},
"summary": {
"live": 0
},
"sentiment_analysis": {
"live": 0
},
"rating_distribution": {
"live": 0
},
"phrase_trends": {
"live": 0
},
"category_trends": {
"live": 0
},
"locations": 0,
"languages": 0,
"categories": 0,
"errors": 0
},
"total_content_analysis": 0,
"content_generation": {
"generate": {
"live": 0
},
"generate_meta_tags": {
"live": 0
},
"generate_text": {
"live": 0
},
"paraphrase": {
"live": 0
},
"check_grammar": {
"live": 0,
"languages": 0
},
"text_summary": {
"live": 0,
"languages": 0
},
"generate_sub_topics": {
"live": 0
}
},
"total_content_generation": 0,
"value": "2025-05-29"
},
"minute": {
"serp": {
"task_post": 0,
"task_get": {
"regular": 0,
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"locations": 0,
"languages": 0,
"live": {
"regular": 0,
"advanced": 0,
"html": 0
},
"errors": 0,
"tasks_fixed": 0,
"jobs": {
"task_post": 0
},
"screenshot": 0
},
"total": 0,
"total_serp": 0,
"keywords_data": {
"keywords_for_keywords": {
"task_post": 0,
"task_get": 0
},
"keywords_for_site": {
"task_post": 0,
"task_get": 0
},
"search_volume": {
"task_post": 0,
"task_get": 0
},
"ad_traffic_by_keywords": {
"task_post": 0,
"task_get": 0
},
"languages": 0,
"locations": 0,
"tasks_ready": 0,
"explore": {
"task_post": 0,
"task_get": 0,
"live": 0
},
"categories": 0,
"errors": 0,
"bing": {
"keyword_performance": {
"live": 0
},
"search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"audience_estimation": {
"live": 0
},
"keyword_suggestions_for_url": {
"live": 0
}
},
"keyword_performance": {
"task_get": 0,
"task_post": 0
},
"locations_and_languages": 0,
"google_ads": {
"status": 0,
"search_volume": {
"live": 0
},
"keywords_for_keywords": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"ad_traffic_by_keywords": {
"live": 0
}
},
"dataforseo_trends": {
"explore": {
"live": 0
},
"subregion_interests": {
"live": 0
},
"demography": {
"live": 0
},
"merged_data": {
"live": 0
}
},
"clickstream_data": {
"dataforseo_search_volume": {
"live": 0
},
"locations_and_languages": 0,
"bulk_search_volume": {
"live": 0
},
"global_search_volume": {
"live": 0
}
},
"audience_estimation": {
"task_post": 0,
"task_get": 0
},
"keyword_suggestions_for_url": {
"task_post": 0,
"task_get": 0
}
},
"total_keywords_data": 0,
"appendix": {
"user_data": 0,
"errors": 0
},
"total_appendix": 0,
"dataforseo_labs": {
"locations_and_languages": 0,
"categories": 0,
"errors": 0,
"product_competitors": {
"live": 0
},
"product_keyword_intersections": {
"live": 0
},
"product_rank_overview": {
"live": 0
},
"ranked_keywords": {
"live": 0
},
"serp_competitors": {
"live": 0
},
"subdomains": {
"live": 0
},
"relevant_pages": {
"live": 0
},
"competitors_domain": {
"live": 0
},
"related_keywords": {
"live": 0
},
"domain_rank_overview": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"page_intersection": {
"live": 0
},
"bulk_traffic_estimation": {
"live": 0
},
"bulk_keyword_difficulty": {
"live": 0
},
"bulk_search_volume": {
"live": 0
},
"keywords_for_site": {
"live": 0
},
"keyword_suggestions": {
"live": 0
},
"keyword_ideas": {
"live": 0
},
"historical_search_volume": {
"live": 0
},
"categories_for_domain": {
"live": 0
},
"domain_metrics_by_categories": {
"live": 0
},
"top_searches": {
"live": 0
},
"domain_whois_overview": {
"live": 0
},
"historical_rank_overview": {
"live": 0
},
"keywords_for_categories": {
"live": 0
},
"historical_serps": {
"live": 0
},
"app_competitors": {
"live": 0
},
"keywords_for_app": {
"live": 0
},
"app_intersection": {
"live": 0
},
"bulk_app_metrics": {
"live": 0
},
"search_intent": {
"live": 0
},
"historical_bulk_traffic_estimation": {
"live": 0
},
"categories_for_keywords": {
"live": 0
},
"keyword_overview": {
"live": 0
},
"historical_keyword_data": {
"live": 0
}
},
"total_dataforseo_labs": 0,
"domain_analytics": {
"tasks_ready": 0,
"errors": 0,
"whois": {
"overview": {
"live": 0
}
},
"technologies": {
"domain_technologies": {
"live": 0
},
"domains_by_technology": {
"live": 0
},
"languages": 0,
"locations": 0,
"technologies": 0,
"aggregation_technologies": {
"live": 0
},
"technologies_summary": {
"live": 0
},
"domains_by_html_terms": {
"live": 0
},
"technology_stats": {
"live": 0
}
}
},
"total_domain_analytics": 0,
"merchant": {
"google": {
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"ad_url": 0
},
"product_spec": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"product_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
}
},
"amazon": {
"asin": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"products": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"sellers": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"reviews": {
"tasks_ready": 0,
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"tasks_ready": 0
},
"total_merchant": 0,
"on_page": {
"task_post": 0,
"tasks_ready": 0,
"summary": 0,
"resources": 0,
"pages": 0,
"non_indexable": 0,
"duplicate_tags": 0,
"links": 0,
"waterfall": 0,
"errors": 0,
"pages_by_resource": 0,
"duplicate_content": 0,
"raw_html": 0,
"instant_pages": 0,
"redirect_chains": 0,
"lighthouse": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"keyword_density": 0,
"page_screenshot": 0,
"content_parsing": 0,
"content_parsing_live": 0
},
"total_on_page": 0,
"business_data": {
"google": {
"my_business_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0,
"live": 0
},
"my_business_updates": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"hotel_info": {
"task_post": 0,
"task_get": {
"advanced": 0,
"html": 0
},
"tasks_ready": 0,
"live": {
"advanced": 0,
"html": 0
}
},
"hotel_searches": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0,
"live": 0
},
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"questions_and_answers": {
"task_post": 0,
"live": 0,
"tasks_ready": 0,
"task_get": 0
},
"extended_reviews": {
"task_post": 0,
"task_get": 0
}
},
"locations": 0,
"languages": 0,
"errors": 0,
"yelp": {
"reviews": {
"task_post": 0,
"task_get": 0,
"tasks_ready": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"social_media": {
"facebook": {
"live": 0
},
"pinterest": {
"live": 0
},
"reddit": {
"live": 0
}
},
"tripadvisor": {
"reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
},
"search": {
"task_post": 0,
"tasks_ready": 0,
"task_get": 0
}
},
"trustpilot": {
"reviews": {
"task_get": 0,
"tasks_ready": 0,
"task_post": 0
},
"search": {
"tasks_ready": 0,
"task_get": 0,
"task_post": 0
}
},
"business_listings": {
"search": {
"live": 0
},
"categories_aggregation": {
"live": 0
},
"categories": 0,
"locations": 0
},
"tasks_ready": 0
},
"total_business_data": 0,
"backlinks": {
"summary": {
"live": 0
},
"history": {
"live": 0
},
"content_duplicates": {
"live": 0
},
"domain_intersection": {
"live": 0
},
"backlinks": {
"live": 0
},
"domain_pages": {
"live": 0
},
"anchors": {
"live": 0
},
"referring_domains": {
"live": 0
},
"page_intersection": {
"live": 0
},
"referring_networks": {
"live": 0
},
"bulk_ranks": {
"live": 0
},
"bulk_backlinks": {
"live": 0
},
"bulk_new_lost_backlinks": {
"live": 0
},
"bulk_new_lost_referring_domains": {
"live": 0
},
"bulk_referring_domains": {
"live": 0
},
"errors": 0,
"domain_pages_summary": {
"live": 0
},
"timeseries_summary": {
"live": 0
},
"timeseries_new_lost_summary": {
"live": 0
},
"competitors": {
"live": 0
},
"bulk_spam_score": {
"live": 0
},
"bulk_pages_summary": {
"live": 0
}
},
"total_backlinks": 0,
"app_data": {
"app_info": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_list": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"app_reviews": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0
}
},
"app_searches": {
"task_post": 0,
"tasks_ready": 0,
"task_get": {
"advanced": 0,
"html": 0
}
},
"errors": 0,
"languages": 0,
"locations": 0,
"categories": 0,
"app_listings": {
"categories_aggregation": {
"live": 0
},
"search": {
"live": 0
}
},
"tasks_ready": 0
},
"total_app_data": 0,
"content_analysis": {
"search": {
"live": 0
},
"summary": {
"live": 0
},
"sentiment_analysis": {
"live": 0
},
"rating_distribution": {
"live": 0
},
"phrase_trends": {
"live": 0
},
"category_trends": {
"live": 0
},
"locations": 0,
"languages": 0,
"categories": 0,
"errors": 0
},
"total_content_analysis": 0,
"content_generation": {
"generate": {
"live": 0
},
"generate_meta_tags": {
"live": 0
},
"generate_text": {
"live": 0
},
"paraphrase": {
"live": 0
},
"check_grammar": {
"live": 0,
"languages": 0
},
"text_summary": {
"live": 0,
"languages": 0
},
"generate_sub_topics": {
"live": 0
}
},
"total_content_generation": 0,
"value": "2025-05-29 16:03"
}
}
},
"price": {
"keywords_data": {
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"ad_traffic_by_keywords": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.05
}
]
}
},
"audience_estimation": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.05
}
]
}
},
"bing": {
"audience_estimation": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.075
}
]
}
},
"keyword_performance": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.075
}
]
}
},
"keywords_for_keywords": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.075
}
]
}
},
"keywords_for_site": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.075
}
]
}
},
"keyword_suggestions_for_url": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.075
}
]
}
},
"search_volume": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.075
}
]
}
}
},
"categories": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"clickstream_data": {
"bulk_search_volume": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"dataforseo_search_volume": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.15
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.15
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.15
}
]
}
},
"global_search_volume": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.15
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.15
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.15
}
]
}
},
"locations_and_languages": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"errors": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"google_ads": {
"ad_traffic_by_keywords": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.075
}
]
}
},
"keywords_for_keywords": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.075
}
]
}
},
"keywords_for_site": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.075
}
]
}
},
"search_volume": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.075
}
]
}
},
"status": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"keyword_performance": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.05
}
]
}
},
"keywords_for_keywords": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.05
}
]
}
},
"keywords_for_site": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.05
}
]
}
},
"keyword_suggestions_for_url": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.05
}
]
}
},
"languages": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"locations": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"locations_and_languages": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"search_volume": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.05
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.05
}
]
}
},
"dataforseo_trends": {
"demography": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.002
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.002
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.002
}
]
}
},
"explore": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.001
}
]
}
},
"merged_data": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.005
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.005
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.005
}
]
}
},
"subregion_interests": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.002
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.002
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.002
}
]
}
}
},
"explore": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.009
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.009
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.009
}
]
},
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00225
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00225
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0045
}
]
}
}
},
"merchant": {
"google": {
"product_info": {
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
}
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.002
}
]
}
},
"product_spec": {
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.002
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"products": {
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.002
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"sellers": {
"ad_url": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.000001
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.000001
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.000001
}
]
},
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.002
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
}
},
"amazon": {
"asin": {
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.0015
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.0015
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.003
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"products": {
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.002
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"sellers": {
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.002
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
}
},
"errors": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"languages": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"locations": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"reviews": {
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0015
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"serp": {
"tasks_fixed": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"errors": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"jobs": {
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.0006
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.0006
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0012
}
]
}
},
"languages": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"live": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.002
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.002
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.002
}
]
},
"regular": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.002
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.002
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.002
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.002
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.002
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.002
}
]
}
},
"locations": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"screenshot": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.004
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.004
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.004
}
]
},
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"regular": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.0006
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.0006
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0012
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"appendix": {
"errors": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"user_data": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"app_data": {
"app_info": {
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.0006
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.0006
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0012
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"app_listings": {
"categories_aggregation": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
]
}
},
"search": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
]
}
}
},
"app_list": {
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.0012
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.0012
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0024
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"app_reviews": {
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0015
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"app_searches": {
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.0012
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.0012
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0024
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"categories": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"errors": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"languages": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"locations": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"backlinks": {
"anchors": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"backlinks": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"bulk_backlinks": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"bulk_new_lost_backlinks": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"bulk_new_lost_referring_domains": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"bulk_pages_summary": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"bulk_ranks": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"bulk_referring_domains": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"bulk_spam_score": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"competitors": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"content_duplicates": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"domain_intersection": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"domain_pages": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"domain_pages_summary": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"errors": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"history": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"page_intersection": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"referring_domains": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"referring_networks": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"summary": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"timeseries_new_lost_summary": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"timeseries_summary": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
}
},
"business_data": {
"business_listings": {
"categories": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"categories_aggregation": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0003
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0003
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0003
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"locations": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"search": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0003
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0003
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0003
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
}
},
"errors": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"google": {
"extended_reviews": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0015
}
]
}
},
"hotel_info": {
"live": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.004
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.004
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.004
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.004
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.004
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.004
}
]
}
},
"task_get": {
"advanced": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.0008
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.0008
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0016
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"hotel_searches": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.004
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.004
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.004
}
]
},
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0015
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"my_business_info": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.0054
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.0054
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0054
}
]
},
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.0015
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.0015
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.003
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"my_business_updates": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00225
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00225
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0045
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"questions_and_answers": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.0054
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.0054
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0054
}
]
},
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0015
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"reviews": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0015
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
}
},
"social_media": {
"facebook": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00004
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00004
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00004
}
]
}
},
"pinterest": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00004
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00004
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00004
}
]
}
},
"reddit": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00004
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00004
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00004
}
]
}
}
},
"languages": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"locations": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"tripadvisor": {
"reviews": {
"task_get": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0015
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
}
},
"search": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0015
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
}
}
},
"trustpilot": {
"reviews": {
"task_get": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0015
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
}
},
"search": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0015
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
}
},
"yelp": {
"reviews": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0015
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"search": {
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00075
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0015
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
}
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"content_analysis": {
"categories": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"category_trends": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"errors": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"languages": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"locations": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"phrase_trends": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"rating_distribution": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.0203
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.0203
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0203
}
]
}
},
"search": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"sentiment_analysis": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
},
"summary": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00003
},
{
"cost_type": "per_request",
"cost": 0.02
}
]
}
}
},
"content_generation": {
"check_grammar": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00001
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00001
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00001
}
]
},
"languages": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"generate": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00005
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00005
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00005
}
]
}
},
"generate_meta_tags": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
}
]
}
},
"generate_sub_topics": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.0001
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.0001
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.0001
}
]
}
},
"generate_text": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00005
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00005
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00005
}
]
}
},
"paraphrase": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00015
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00015
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00015
}
]
}
},
"text_summary": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
}
]
},
"languages": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
}
},
"dataforseo_labs": {
"app_competitors": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"app_intersection": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"bulk_app_metrics": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"bulk_keyword_difficulty": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"bulk_search_volume": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"bulk_traffic_estimation": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"categories": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"categories_for_domain": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"categories_for_keywords": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.00001
},
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.00001
},
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.00001
},
{
"cost_type": "per_request",
"cost": 0.001
}
]
}
},
"competitors_domain": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"domain_intersection": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"domain_metrics_by_categories": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
]
}
},
"domain_rank_overview": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"domain_whois_overview": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
]
}
},
"errors": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"historical_bulk_traffic_estimation": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
]
}
},
"historical_keyword_data": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"historical_rank_overview": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
]
}
},
"historical_search_volume": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"historical_serps": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"keyword_ideas": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"keyword_overview": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"keywords_for_app": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"keywords_for_categories": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"keywords_for_site": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"keyword_suggestions": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"locations_and_languages": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"page_intersection": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"product_competitors": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"product_keyword_intersections": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"product_rank_overview": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"ranked_keywords": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"related_keywords": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"relevant_pages": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"search_intent": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.001
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.001
}
]
}
},
"serp_competitors": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"subdomains": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"top_searches": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.0001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
}
},
"domain_analytics": {
"whois": {
"overview": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.1
}
]
}
}
},
"technologies": {
"languages": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"locations": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"technologies": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"aggregation_technologies": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"domains_by_html_terms": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"domains_by_technology": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"domain_technologies": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"technologies_summary": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
},
"technology_stats": {
"live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.001
},
{
"cost_type": "per_request",
"cost": 0.01
}
]
}
}
},
"errors": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"on_page": {
"errors": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0
}
]
},
"lighthouse": {
"live": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00425
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00425
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.00425
}
]
},
"task_get": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0.00425
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0.00425
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0.00425
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
},
"content_parsing": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"content_parsing_live": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.000125
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.000125
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.000125
}
]
},
"duplicate_content": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"duplicate_tags": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"instant_pages": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.000125
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.000125
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.000125
}
]
},
"keyword_density": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"links": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"non_indexable": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"pages": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"pages_by_resource": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"page_screenshot": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.004
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.004
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.004
}
]
},
"raw_html": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"redirect_chains": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"resources": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"summary": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"task_post": {
"priority_low": [
{
"cost_type": "per_result",
"cost": 0.000125
}
],
"priority_normal": [
{
"cost_type": "per_result",
"cost": 0.000125
}
],
"priority_high": [
{
"cost_type": "per_result",
"cost": 0.000125
}
]
},
"tasks_ready": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
},
"waterfall": {
"priority_low": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_normal": [
{
"cost_type": "per_request",
"cost": 0
}
],
"priority_high": [
{
"cost_type": "per_request",
"cost": 0
}
]
}
}
},
"backlinks_subscription_expiry_date": "2050-01-01 00:00:00 +00:00"
}
]
}
]
}