The aim of serpstatr is to provide a wrapper for the latest version of Serpstat API. The main purpose of this API is automation of common SEO and PPC tasks like keywords research and competitors analysis in Google and Yandex.
All package functions names have the same structure:
Get your API key. It is required in all package functions.
Check if you have enough limits to make API calls
api_token <- 'your_api_token'
sst_sa_stats(api_token)$summary_info$left_lines
Get database ID to make requests:
sst_sa_database_info(api_token)$data
Call functions to get keywords data:
sst_sa_keywords_info(
api_token = api_token,
keywords = c('seo', 'ppc', 'serpstat'),
se = 'g_us',
sort = list(cost = 'asc'),
return_method = 'df'
)$data
To get the current development version from GitLab:
devtools::install_gitlab('alexdanilin/serpstatr')
Send all issues on GitLab page.