> ## 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/jobs/search

> Search Glassdoor (glassdoor.com) jobs by keyword and location with filters for posting recency, employment type, seniority, remote, easy-apply, minimum company rating, salary range and distance.

**Price:** 20 credits per 30 results



## OpenAPI

````yaml /openapi/jobs.json post /api/glassdoor/jobs/search
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/jobs/search:
    post:
      tags:
        - /glassdoor
      summary: /glassdoor/jobs/search
      description: >-
        Search Glassdoor (glassdoor.com) jobs by keyword and location with
        filters for posting recency, employment type, seniority, remote,
        easy-apply, minimum company rating, salary range and distance.


        **Price:** 20 credits per 30 results
      operationId: __api_glassdoor_jobs_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GlassdoorJobsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GlassdoorSearchJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GlassdoorJobsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          type: string
          minLength: 1
        location:
          type: string
          default: ''
        count:
          type: integer
          minimum: 1
        date_posted:
          $ref: '#/components/schemas/GlassdoorJobDatePosted'
          default: any
        job_type:
          $ref: '#/components/schemas/GlassdoorJobType'
          default: any
        seniority:
          $ref: '#/components/schemas/GlassdoorSeniority'
          default: any
        easy_apply:
          type: boolean
          default: false
        remote:
          type: boolean
          default: false
        company_rating:
          anyOf:
            - type: number
              maximum: 5
              minimum: 1
            - type: 'null'
        salary_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        salary_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        distance:
          $ref: '#/components/schemas/GlassdoorDistance'
          default: miles_25
        sort:
          $ref: '#/components/schemas/GlassdoorJobSort'
          default: relevant
      type: object
      required:
        - keyword
        - count
    GlassdoorSearchJob:
      properties:
        '@type':
          type: string
          default: GlassdoorSearchJob
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        employer_id:
          anyOf:
            - type: string
            - type: 'null'
        employer_name:
          anyOf:
            - type: string
            - type: 'null'
        employer_rating:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        location_type:
          anyOf:
            - type: string
            - type: 'null'
        age_in_days:
          anyOf:
            - type: integer
            - type: 'null'
        is_easy_apply:
          anyOf:
            - type: boolean
            - type: 'null'
        pay_currency:
          anyOf:
            - type: string
            - type: 'null'
        pay_period:
          anyOf:
            - type: string
            - type: 'null'
        pay_min:
          anyOf:
            - type: number
            - type: 'null'
        pay_median:
          anyOf:
            - type: number
            - type: 'null'
        pay_max:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GlassdoorJobDatePosted:
      type: string
      enum:
        - any
        - last_day
        - last_3_days
        - last_week
        - last_2_weeks
        - last_month
    GlassdoorJobType:
      type: string
      enum:
        - any
        - full_time
        - part_time
        - contract
        - internship
        - temporary
        - apprenticeship
        - entry_level
    GlassdoorSeniority:
      type: string
      enum:
        - any
        - internship
        - entry_level
        - mid_senior
        - director
        - executive
    GlassdoorDistance:
      type: string
      enum:
        - exact
        - miles_5
        - miles_10
        - miles_15
        - miles_25
        - miles_50
        - miles_100
    GlassdoorJobSort:
      type: string
      enum:
        - relevant
        - date
    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

````