> ## 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.

# /bamboohr/jobs/search

> List the open job postings of one company's BambooHR careers page by board handle. Each row carries the job id, title, careers URL, department, the employment status the company typed, the workplace type, the city and state, and the company block with its name, logo and careers URL.

**Price:** 1 credit

**⚠️ Common errors:** 412: Company careers page not found



## OpenAPI

````yaml /openapi/jobs.json post /api/bamboohr/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/bamboohr/jobs/search:
    post:
      tags:
        - /bamboohr
      summary: /bamboohr/jobs/search
      description: >-
        List the open job postings of one company's BambooHR careers page by
        board handle. Each row carries the job id, title, careers URL,
        department, the employment status the company typed, the workplace type,
        the city and state, and the company block with its name, logo and
        careers URL.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Company careers page not found
      operationId: __api_bamboohr_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/BamboohrJobsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BamboohrJobSummary'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BamboohrJobsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
        count:
          type: integer
          maximum: 1000
          minimum: 1
      type: object
      required:
        - company
        - count
    BamboohrJobSummary:
      properties:
        '@type':
          type: string
          default: BamboohrJobSummary
        id:
          type: string
        company:
          type: string
        job_title:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
        department_id:
          anyOf:
            - type: string
            - type: 'null'
        employment_status:
          anyOf:
            - type: string
            - type: 'null'
        workplace_type:
          anyOf:
            - type: string
            - type: 'null'
        workplace_type_id:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/BamboohrLocation'
            - type: 'null'
        company_info:
          anyOf:
            - $ref: '#/components/schemas/BamboohrCompany'
            - type: 'null'
      type: object
      required:
        - id
        - company
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BamboohrLocation:
      properties:
        '@type':
          type: string
          default: BamboohrLocation
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    BamboohrCompany:
      properties:
        '@type':
          type: string
          default: BamboohrCompany
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        share_image:
          anyOf:
            - type: string
            - type: 'null'
        careers_url:
          anyOf:
            - type: string
            - type: 'null'
        is_trial:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    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

````