gd_company: Glassdoor Company Search

View source: R/glassdoor_employer.R

gd_companyR Documentation

Glassdoor Company Search

Description

Glassdoor Company Search

Usage

gd_company(
  query = NULL,
  ...,
  location = NULL,
  city = NULL,
  state = NULL,
  country = NULL,
  page_number = NULL,
  page_size = NULL
)

gd_employer(
  query = NULL,
  ...,
  location = NULL,
  city = NULL,
  state = NULL,
  country = NULL,
  page_number = NULL,
  page_size = NULL
)

gd_company_df(...)

gd_employer_df(...)

Arguments

query

Additional options to pass to the query other than those specified here

...

arguments to pass to gd_api

location

Scope the search to a specific location by specifying it here - city, state, or country.

city

Scope the search to a specific city by specifying it here.

state

Scope the search to a specific state by specifying it here.

country

Scope the search to a specific country by specifying it here.

page_number

Page number to retrieve. Default is 1.

page_size

Page size, i.e. the number of jobs returned on each page of results. Default is 20.

Examples

if (have_gd_tokens()) {

res = gd_company_df("walmart")
head(res[, c("id", "name")])
res = gd_company_df("Target")
res = gd_company("Dropbox")
}


glassdoor documentation built on April 4, 2025, 1:13 a.m.