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

> Get one job posting from a company's BreezyHR career board by board handle and posting id (or a full posting URL): title, the full HTML and plain-text description, the board's publication date and the posting's original posted date, employment type, department, free-text salary and structured salary range, workplace type, applicant location requirement, the primary and additional locations, and the company block with its website.

**Price:** 10 credits

**⚠️ Common errors:** 412: Company board not found, or the posting is closed or unknown on that board



## OpenAPI

````yaml /openapi/jobs.json post /api/breezyhr/jobs
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:
    post:
      tags:
        - /breezyhr
      summary: /breezyhr/jobs
      description: >-
        Get one job posting from a company's BreezyHR career board by board
        handle and posting id (or a full posting URL): title, the full HTML and
        plain-text description, the board's publication date and the posting's
        original posted date, employment type, department, free-text salary and
        structured salary range, workplace type, applicant location requirement,
        the primary and additional locations, and the company block with its
        website.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Company board not found, or the posting is
        closed or unknown on that board
      operationId: __api_breezyhr_jobs_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BreezyhrJobsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BreezyhrJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BreezyhrJobsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
        posting_id:
          type: string
          minLength: 1
      type: object
      required:
        - company
        - posting_id
    BreezyhrJob:
      properties:
        '@type':
          type: string
          default: BreezyhrJob
        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'
        posted_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'
        salary_range:
          anyOf:
            - $ref: '#/components/schemas/BreezyhrSalaryRange'
            - type: 'null'
        description_plain:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        workplace_type:
          anyOf:
            - type: string
            - type: 'null'
        applicant_location_requirement:
          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'
        company_website:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - company
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BreezyhrSalaryRange:
      properties:
        '@type':
          type: string
          default: BreezyhrSalaryRange
        currency:
          anyOf:
            - type: string
            - type: 'null'
        min:
          anyOf:
            - type: number
            - type: 'null'
        max:
          anyOf:
            - type: number
            - type: 'null'
        unit:
          anyOf:
            - type: string
            - type: 'null'
      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

````