Skip to main content
POST
/
api
/
glassdoor
/
companies
/
search
/glassdoor/companies/search
curl --request POST \
  --url https://api.anysite.io/api/glassdoor/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "company": "",
  "job_title": "",
  "industries": []
}
'
[
  {
    "id": "<string>",
    "@type": "@glassdoor_search_company",
    "name": "<string>",
    "short_name": "<string>",
    "url": "<string>",
    "image": "<string>",
    "headquarters": "<string>",
    "industry": "<string>",
    "sector": "<string>",
    "job_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
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of companies to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
company
string
default:""

Company name to search for

Example:

"google"

job_title
string
default:""

Filter by a job title at the company

Example:

"engineer"

sector
enum<string> | null

Filter by industry sector

Available options:
legal,
aerospace_and_defense,
agriculture,
arts_entertainment_and_recreation,
pharmaceutical_and_biotechnology,
management_and_consulting,
construction_repair_and_maintenance,
personal_consumer_services,
education,
financial_services,
government_and_public_administration,
healthcare,
information_technology,
insurance,
manufacturing,
media_and_communication,
nonprofit_and_ngo,
energy_mining_and_utilities,
real_estate,
restaurants_and_food_service,
retail_and_wholesale,
telecommunications,
transportation_and_logistics,
hotels_and_travel,
human_resources_and_staffing
industries
enum<string>[]

Filter by one or more industries

Available options:
accounting_and_tax,
legal,
aerospace_and_defense,
animal_production,
fishery,
farm_support,
floral_nursery,
crop_production,
forestry_logging_and_timber_operations,
audiovisual,
bars_and_nightclubs,
gambling,
culture_and_entertainment,
photography,
sports_and_recreation,
ticket_sales,
biotech_and_pharmaceuticals,
advertising_and_public_relations,
architectural_and_engineering_services,
building_and_personnel_services,
office_supply_and_copy_stores,
commercial_printing,
business_consulting,
membership_organizations,
research_and_development,
security_and_protective,
hr_consulting,
wholesale,
vehicle_repair_and_maintenance,
commercial_equipment_services,
construction,
general_repair_and_maintenance,
consumer_product_rental,
event_services,
beauty_and_wellness,
laundry_and_dry_cleaning,
property_management,
pet_care_and_veterinary,
colleges_and_universities,
education_and_training_services,
primary_and_secondary_schools,
preschools_and_child_care_services,
banking_and_lending,
financial_transaction_processing,
stock_exchanges,
national_agencies,
municipal_agencies,
state_and_regional_agencies,
health_care_services_and_hospitals,
computer_hardware_development,
enterprise_software_and_network_solutions,
internet_and_web_services,
information_technology_support_services,
insurance_agencies_and_brokerages,
insurance_carriers,
chemical_manufacturing,
electronics_manufacturing,
food_and_beverage_manufacturing,
health_care_products_manufacturing,
machinery_manufacturing,
metal_and_mineral_manufacturing,
transportation_equipment_manufacturing,
wood_and_paper_manufacturing,
film_production,
publishing,
broadcast_media,
video_game_publishing,
mining_and_metals,
grantmaking_and_charitable_foundations,
religious_institutions,
civic_and_social_services,
energy_and_utilities,
real_estate,
catering_and_food_service_contractors,
convenience_stores,
restaurants_and_cafes,
auctions_and_galleries,
automotive_parts_and_accessories_stores,
beauty_and_personal_accessories_stores,
consumer_electronics_and_appliances_stores,
department_clothing_and_shoe_stores,
drug_and_health_stores,
food_and_beverage_stores,
general_merchandise_and_superstores,
gift_novelty_and_souvenir_stores,
home_furniture_and_housewares_stores,
media_and_entertainment_stores,
other_retail_stores,
pet_and_pet_supplies_stores,
sporting_goods_stores,
toy_and_hobby_stores,
vehicle_dealers,
cable_internet_and_telephone_providers,
telecommunications_services,
parking_and_valet,
rail_transportation,
shipping_and_trucking,
car_and_truck_rental,
airlines_airports_and_air_transportation,
taxi_and_car_services,
hotels_and_resorts,
travel_agencies,
grocery_stores,
investment_and_asset_management,
consumer_product_manufacturing,
debt_relief,
ambulance_and_medical_transportation,
dental_clinics,
hospitals_and_health_clinics,
medical_testing_and_clinical_laboratories,
nursing_care_facilities,
staffing_and_subcontracting,
software_development,
law_firms,
legal_services,
waste_management,
textile_and_apparel_manufacturing,
music_and_sound_production,
translation_and_linguistic_services,
private_households,
biotechnology,
pharmaceutical,
real_estate_agencies,
marine_transportation

Response

Successful Response

id
string
required
@type
string
default:@glassdoor_search_company
name
string | null
short_name
string | null
url
string | null
image
string | null
headquarters
string | null
industry
string | null
sector
string | null
job_count
integer | null
rating
number | null
ratings
GlassdoorCompanyRatings · object