> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /glassdoor/companies

> Get a Glassdoor (glassdoor.com) company overview by employer id (or company URL): name, rating, ratings by category, recommend/CEO-approval/business-outlook percentages, review/salary/job counts, industry, sector, headquarters, size, revenue, founding year, company type, website, description, mission, CEO, workplace awards and competitors.

**Price:** 10 credits

**⚠️ Common errors:** 412: Company not found (well-formed but nonexistent employer id)



## OpenAPI

````yaml /openapi/jobs.json post /api/glassdoor/companies
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/glassdoor/companies:
    post:
      tags:
        - /glassdoor
      summary: /glassdoor/companies
      description: >-
        Get a Glassdoor (glassdoor.com) company overview by employer id (or
        company URL): name, rating, ratings by category,
        recommend/CEO-approval/business-outlook percentages, review/salary/job
        counts, industry, sector, headquarters, size, revenue, founding year,
        company type, website, description, mission, CEO, workplace awards and
        competitors.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Company not found (well-formed but
        nonexistent employer id)
      operationId: __api_glassdoor_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GlassdoorCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GlassdoorCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GlassdoorCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
        country:
          $ref: '#/components/schemas/GlassdoorCountry'
          default: us
      type: object
      required:
        - company
    GlassdoorCompany:
      properties:
        '@type':
          type: string
          default: GlassdoorCompany
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        short_name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        website:
          anyOf:
            - type: string
            - type: 'null'
        headquarters:
          anyOf:
            - type: string
            - type: 'null'
        size:
          anyOf:
            - type: string
            - type: 'null'
        size_category:
          anyOf:
            - type: string
            - type: 'null'
        company_type:
          anyOf:
            - type: string
            - type: 'null'
        revenue:
          anyOf:
            - type: string
            - type: 'null'
        founded_year:
          anyOf:
            - type: integer
            - type: 'null'
        mission:
          anyOf:
            - type: string
            - type: 'null'
        industry:
          anyOf:
            - type: string
            - type: 'null'
        sector:
          anyOf:
            - type: string
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        salary_count:
          anyOf:
            - type: integer
            - type: 'null'
        job_count:
          anyOf:
            - type: integer
            - type: 'null'
        photo_count:
          anyOf:
            - type: integer
            - type: 'null'
        benefit_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        ratings:
          anyOf:
            - $ref: '#/components/schemas/GlassdoorCompanyRatings'
            - type: 'null'
        ceo:
          anyOf:
            - $ref: '#/components/schemas/GlassdoorCompanyCeo'
            - type: 'null'
        awards:
          items:
            $ref: '#/components/schemas/GlassdoorCompanyAward'
          type: array
          default: []
        competitors:
          items:
            $ref: '#/components/schemas/GlassdoorCompetitor'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GlassdoorCountry:
      type: string
      enum:
        - us
        - gb
        - ca
        - de
    GlassdoorCompanyRatings:
      properties:
        '@type':
          type: string
          default: GlassdoorCompanyRatings
        overall:
          anyOf:
            - type: number
            - type: 'null'
        career_opportunities:
          anyOf:
            - type: number
            - type: 'null'
        compensation_and_benefits:
          anyOf:
            - type: number
            - type: 'null'
        culture_and_values:
          anyOf:
            - type: number
            - type: 'null'
        diversity_and_inclusion:
          anyOf:
            - type: number
            - type: 'null'
        senior_management:
          anyOf:
            - type: number
            - type: 'null'
        work_life_balance:
          anyOf:
            - type: number
            - type: 'null'
        recommend_to_friend:
          anyOf:
            - type: number
            - type: 'null'
        ceo_approval:
          anyOf:
            - type: number
            - type: 'null'
        business_outlook:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    GlassdoorCompanyCeo:
      properties:
        '@type':
          type: string
          default: GlassdoorCompanyCeo
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    GlassdoorCompanyAward:
      properties:
        '@type':
          type: string
          default: GlassdoorCompanyAward
        name:
          type: string
        year:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    GlassdoorCompetitor:
      properties:
        '@type':
          type: string
          default: GlassdoorCompetitor
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        short_name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````