Skip to main content
POST
/
api
/
glassdoor
/
companies
/glassdoor/companies
curl --request POST \
  --url https://api.anysite.io/api/glassdoor/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300,
  "country": "us"
}
'
[
  {
    "id": "<string>",
    "@type": "@glassdoor_company",
    "name": "<string>",
    "short_name": "<string>",
    "url": "<string>",
    "image": "<string>",
    "website": "<string>",
    "headquarters": "<string>",
    "size": "<string>",
    "size_category": "<string>",
    "company_type": "<string>",
    "revenue": "<string>",
    "founded_year": 123,
    "description": "<string>",
    "mission": "<string>",
    "industry": "<string>",
    "sector": "<string>",
    "review_count": 123,
    "salary_count": 123,
    "job_count": 123,
    "photo_count": 123,
    "benefit_count": 123,
    "rating": 123,
    "ratings": {
      "@type": "@glassdoor_company_ratings",
      "overall": 123,
      "career_opportunities": 123,
      "compensation_and_benefits": 123,
      "culture_and_values": 123,
      "diversity_and_inclusion": 123,
      "senior_management": 123,
      "work_life_balance": 123,
      "recommend_to_friend": 123,
      "ceo_approval": 123,
      "business_outlook": 123
    },
    "ceo": {
      "@type": "@glassdoor_company_ceo",
      "name": "<string>",
      "title": "<string>",
      "image": "<string>"
    },
    "awards": [],
    "competitors": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Glassdoor employer id (e.g. 7633, IE7633 or E7633) or a company URL containing it

Minimum string length: 1
Examples:

"7633"

"IE7633"

"https://www.glassdoor.com/Overview/Working-at-NVIDIA-EI_IE7633.11,17.htm"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
country
enum<string>
default:us

Country edition

Available options:
us,
gb,
ca,
de

Response

Successful Response

id
string
required
@type
string
default:@glassdoor_company
name
string | null
short_name
string | null
url
string | null
image
string | null
website
string | null
headquarters
string | null
size
string | null
size_category
string | null
company_type
string | null
revenue
string | null
founded_year
integer | null
description
string | null
mission
string | null
industry
string | null
sector
string | null
review_count
integer | null
salary_count
integer | null
job_count
integer | null
photo_count
integer | null
benefit_count
integer | null
rating
number | null
ratings
GlassdoorCompanyRatings · object
ceo
GlassdoorCompanyCeo · object
awards
GlassdoorCompanyAward · object[]
competitors
GlassdoorCompetitor · object[]