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

# /breezyhr/jobs/search

> List the open job postings of one company's BreezyHR career board by board handle. Each row carries the posting id, title, posting URL, publication date, employment type, department, the free-text salary the board publishes, the structured primary location and every additional location, and the company block.

**Price:** 10 credits

**⚠️ Common errors:** 412: Company board not found



## OpenAPI

````yaml /openapi/jobs.json post /api/breezyhr/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/breezyhr/jobs/search:
    post:
      tags:
        - /breezyhr
      summary: /breezyhr/jobs/search
      description: >-
        List the open job postings of one company's BreezyHR career board by
        board handle. Each row carries the posting id, title, posting URL,
        publication date, employment type, department, the free-text salary the
        board publishes, the structured primary location and every additional
        location, and the company block.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Company board not found
      operationId: __api_breezyhr_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/BreezyhrJobsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BreezyhrJobSummary'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BreezyhrJobsSearchPayload:
      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
    BreezyhrJobSummary:
      properties:
        '@type':
          type: string
          default: BreezyhrJobSummary
        id:
          type: string
        company:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        job_title:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        employment_type:
          anyOf:
            - type: string
            - type: 'null'
        employment_type_id:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
        salary:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/BreezyhrLocation'
            - type: 'null'
        locations:
          items:
            $ref: '#/components/schemas/BreezyhrLocation'
          type: array
          default: []
        company_info:
          anyOf:
            - $ref: '#/components/schemas/BreezyhrCompany'
            - type: 'null'
      type: object
      required:
        - id
        - company
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BreezyhrLocation:
      properties:
        '@type':
          type: string
          default: BreezyhrLocation
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        state_id:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_id:
          anyOf:
            - type: string
            - type: 'null'
        is_remote:
          anyOf:
            - type: boolean
            - type: 'null'
        is_primary:
          anyOf:
            - type: boolean
            - type: 'null'
        is_other_selected:
          anyOf:
            - type: boolean
            - type: 'null'
        remote_type:
          anyOf:
            - type: string
            - type: 'null'
        remote_label:
          anyOf:
            - type: string
            - type: 'null'
        street_address:
          anyOf:
            - $ref: '#/components/schemas/BreezyhrStreetAddress'
            - type: 'null'
      type: object
    BreezyhrCompany:
      properties:
        '@type':
          type: string
          default: BreezyhrCompany
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        has_multiple_locations:
          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
    BreezyhrStreetAddress:
      properties:
        '@type':
          type: string
          default: BreezyhrStreetAddress
        formatted:
          anyOf:
            - type: string
            - type: 'null'
        custom:
          anyOf:
            - type: string
            - type: 'null'
        is_other:
          anyOf:
            - type: boolean
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        components:
          items:
            $ref: '#/components/schemas/BreezyhrAddressComponent'
          type: array
          default: []
      type: object
    BreezyhrAddressComponent:
      properties:
        '@type':
          type: string
          default: BreezyhrAddressComponent
        long_name:
          anyOf:
            - type: string
            - type: 'null'
        short_name:
          anyOf:
            - type: string
            - type: 'null'
        types:
          items:
            type: string
          type: array
          default: []
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````