Get Volume, CPC and competition for a set of keywords. For details consult [Keywords Everywhere API Docs](https://api.keywordseverywhere.com/docs/#/keywords/get_keywords_data)

get_keyword_data(
  keywords = c(),
  country = NULL,
  currency = NULL,
  data_source = NULL,
  api_key = config::get("key"),
  parse_response = TRUE
)

Arguments

keywords

Vector of keywords, has to be fewer than 100.

country

Country code also see get_countries

currency

Currency code also see get_currencies

data_source

"gkp" or "cli", NULL will default to cli

api_key

API key

parse_response

Should we parse the response as a list?

Value

list with volume, cpc, competion by keyword

Examples

if (FALSE) { get_keywords_data(c("keywords tool", "keyword planner")) get_keywords_data(c("keywords tool", "keyword planner"), country = "us") }