sst_sa_keywords_info {serpstatr} | R Documentation |
Keywords summary
Description
Returns a number of metrics for each keyword like search volume, CPC and competition level.
Usage
sst_sa_keywords_info(
api_token,
keywords,
se,
sort = NULL,
return_method = "list"
)
Arguments
api_token |
(required) Serpstat API token from your profile. |
keywords |
(required) A vector of keywords to analyze. |
se |
(required) Search engine alias (db_name) returned by
|
sort |
(optional) A field to sort the response. See Sorting for more details. |
return_method |
(optional) Accepted values are 'list' (default) to return data object as list or 'df' to return data object as data.frame. |
Value
Returns a number of metrics for each keyword.
API docs
Check all the values for request and response fields here.
API rows consumption
1 per keyword in request.
Sorting
You can sort the response using sort
argument. It must be a list
with a single named element. The name of the element must match one of
parameters in response. The value of the element must be asc
for
ascending order and desc
for descending order. For example,
sort = list(ads = 'desc')
would sort the response by ads
parameter in descending order.
Examples
## Not run:
api_token <- Sys.getenv('SERPSTAT_API_TOKEN')
sst_sa_keywords_info(
api_token = api_token,
keywords = c('seo', 'ppc', 'serpstat'),
se = 'g_us',
sort = list(cost = 'asc'),
return_method = 'df'
)$data
## End(Not run)