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

# /recruitee/jobs

> Get one published job posting from a company's Recruitee career board by board handle and offer id, offer slug or offer URL: title, department, employment type, workplace type, location and structured locations, HTML description and requirements, salary range, weekly hours, tags, application form settings, screening questions with their answer options, per-locale translations, publication dates and the hosted and apply URLs.

**Price:** 1 credit

**⚠️ Common errors:** 412: Company board not found, the offer is unknown or no longer published, or the host given does not serve a Recruitee board



## OpenAPI

````yaml /openapi/jobs.json post /api/recruitee/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/recruitee/jobs:
    post:
      tags:
        - /recruitee
      summary: /recruitee/jobs
      description: >-
        Get one published job posting from a company's Recruitee career board by
        board handle and offer id, offer slug or offer URL: title, department,
        employment type, workplace type, location and structured locations, HTML
        description and requirements, salary range, weekly hours, tags,
        application form settings, screening questions with their answer
        options, per-locale translations, publication dates and the hosted and
        apply URLs.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Company board not found, the offer is unknown
        or no longer published, or the host given does not serve a Recruitee
        board
      operationId: __api_recruitee_jobs_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RecruiteeJobsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RecruiteeJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RecruiteeJobsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
        job_id:
          type: string
          minLength: 1
      type: object
      required:
        - company
        - job_id
    RecruiteeJob:
      properties:
        '@type':
          type: string
          default: RecruiteeJob
        id:
          type: integer
        company:
          type: string
        guid:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        position:
          anyOf:
            - type: integer
            - type: 'null'
        company_name:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
        category_code:
          anyOf:
            - type: string
            - type: 'null'
        employment_type:
          anyOf:
            - type: string
            - type: 'null'
        experience_code:
          anyOf:
            - type: string
            - type: 'null'
        education_code:
          anyOf:
            - type: string
            - type: 'null'
        workplace_type:
          anyOf:
            - type: string
            - type: 'null'
        remote:
          anyOf:
            - type: boolean
            - type: 'null'
        hybrid:
          anyOf:
            - type: boolean
            - type: 'null'
        on_site:
          anyOf:
            - type: boolean
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state_name:
          anyOf:
            - type: string
            - type: 'null'
        state_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        locations:
          items:
            $ref: '#/components/schemas/RecruiteeLocation'
          type: array
          default: []
        requirements:
          anyOf:
            - type: string
            - type: 'null'
        highlight:
          anyOf:
            - type: string
            - type: 'null'
        tags:
          items:
            type: string
          type: array
          default: []
        salary_range:
          anyOf:
            - $ref: '#/components/schemas/RecruiteeSalaryRange'
            - type: 'null'
        min_hours:
          anyOf:
            - type: integer
            - type: 'null'
        max_hours:
          anyOf:
            - type: integer
            - type: 'null'
        min_hours_per_week:
          anyOf:
            - type: number
            - type: 'null'
        max_hours_per_week:
          anyOf:
            - type: number
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        close_at:
          anyOf:
            - type: integer
            - type: 'null'
        hosted_url:
          anyOf:
            - type: string
            - type: 'null'
        apply_url:
          anyOf:
            - type: string
            - type: 'null'
        mailbox_email:
          anyOf:
            - type: string
            - type: 'null'
        cover_image:
          anyOf:
            - type: string
            - type: 'null'
        sharing_title:
          anyOf:
            - type: string
            - type: 'null'
        sharing_description:
          anyOf:
            - type: string
            - type: 'null'
        sharing_image:
          anyOf:
            - type: string
            - type: 'null'
        locations_question:
          anyOf:
            - type: string
            - type: 'null'
        locations_question_type:
          anyOf:
            - type: string
            - type: 'null'
        locations_question_required:
          anyOf:
            - type: boolean
            - type: 'null'
        location_question_visible:
          anyOf:
            - type: boolean
            - type: 'null'
        apply_form:
          items:
            $ref: '#/components/schemas/RecruiteeApplyFormField'
          type: array
          default: []
        open_questions:
          items:
            $ref: '#/components/schemas/RecruiteeOpenQuestion'
          type: array
          default: []
        translations:
          items:
            $ref: '#/components/schemas/RecruiteeOfferTranslation'
          type: array
          default: []
      type: object
      required:
        - id
        - company
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RecruiteeLocation:
      properties:
        '@type':
          type: string
          default: RecruiteeLocation
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        state_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        note:
          anyOf:
            - type: string
            - type: 'null'
        translations:
          items:
            $ref: '#/components/schemas/RecruiteeLocationTranslation'
          type: array
          default: []
      type: object
    RecruiteeSalaryRange:
      properties:
        '@type':
          type: string
          default: RecruiteeSalaryRange
        currency:
          anyOf:
            - type: string
            - type: 'null'
        interval:
          anyOf:
            - type: string
            - type: 'null'
        min:
          anyOf:
            - type: number
            - type: 'null'
        max:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    RecruiteeApplyFormField:
      properties:
        '@type':
          type: string
          default: RecruiteeApplyFormField
        name:
          type: string
        mode:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    RecruiteeOpenQuestion:
      properties:
        '@type':
          type: string
          default: RecruiteeOpenQuestion
        id:
          anyOf:
            - type: integer
            - type: 'null'
        position:
          anyOf:
            - type: integer
            - type: 'null'
        body:
          anyOf:
            - type: string
            - type: 'null'
        kind:
          anyOf:
            - type: string
            - type: 'null'
        required:
          anyOf:
            - type: boolean
            - type: 'null'
        constraints:
          anyOf:
            - $ref: '#/components/schemas/RecruiteeQuestionConstraints'
            - type: 'null'
        options:
          items:
            $ref: '#/components/schemas/RecruiteeQuestionOption'
          type: array
          default: []
        translations:
          items:
            $ref: '#/components/schemas/RecruiteeTextTranslation'
          type: array
          default: []
      type: object
    RecruiteeOfferTranslation:
      properties:
        '@type':
          type: string
          default: RecruiteeOfferTranslation
        locale:
          type: string
        requirements:
          anyOf:
            - type: string
            - type: 'null'
        highlight:
          anyOf:
            - type: string
            - type: 'null'
        sharing_title:
          anyOf:
            - type: string
            - type: 'null'
        sharing_description:
          anyOf:
            - type: string
            - type: 'null'
        sharing_image:
          anyOf:
            - type: string
            - type: 'null'
        locations_question:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - locale
    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
    RecruiteeLocationTranslation:
      properties:
        '@type':
          type: string
          default: RecruiteeLocationTranslation
        locale:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        note:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - locale
    RecruiteeQuestionConstraints:
      properties:
        '@type':
          type: string
          default: RecruiteeQuestionConstraints
        currency:
          anyOf:
            - type: string
            - type: 'null'
        length:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    RecruiteeQuestionOption:
      properties:
        '@type':
          type: string
          default: RecruiteeQuestionOption
        id:
          anyOf:
            - type: integer
            - type: 'null'
        position:
          anyOf:
            - type: integer
            - type: 'null'
        body:
          anyOf:
            - type: string
            - type: 'null'
        translations:
          items:
            $ref: '#/components/schemas/RecruiteeTextTranslation'
          type: array
          default: []
      type: object
    RecruiteeTextTranslation:
      properties:
        '@type':
          type: string
          default: RecruiteeTextTranslation
        locale:
          type: string
        body:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - locale
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````