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

# /personio/jobs

> Get one job posting from a company's Personio career board by board handle and posting id: the job title, legal entity, office and additional offices, department, employment type, seniority, schedule, years of experience, occupation, keywords, salary range where the company published one, and the full posting text split into its named sections.

**Price:** 5 credits

**⚠️ Common errors:** 412: No such posting on this Personio board, or no board exists for this handle



## OpenAPI

````yaml /openapi/jobs.json post /api/personio/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/personio/jobs:
    post:
      tags:
        - /personio
      summary: /personio/jobs
      description: >-
        Get one job posting from a company's Personio career board by board
        handle and posting id: the job title, legal entity, office and
        additional offices, department, employment type, seniority, schedule,
        years of experience, occupation, keywords, salary range where the
        company published one, and the full posting text split into its named
        sections.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: No such posting on this Personio board, or no
        board exists for this handle
      operationId: __api_personio_jobs_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PersonioJobsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PersonioJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PersonioJobsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        tenant:
          type: string
          minLength: 1
        job:
          type: integer
          exclusiveMinimum: 0
        language:
          type: string
          maxLength: 5
          default: ''
      type: object
      required:
        - tenant
        - job
    PersonioJob:
      properties:
        '@type':
          type: string
          default: PersonioJob
        id:
          type: integer
        url:
          anyOf:
            - type: string
            - type: 'null'
        tenant:
          anyOf:
            - type: string
            - type: 'null'
        subcompany:
          anyOf:
            - type: string
            - type: 'null'
        office:
          anyOf:
            - type: string
            - type: 'null'
        additional_offices:
          items:
            type: string
          type: array
          default: []
        department:
          anyOf:
            - type: string
            - type: 'null'
        recruiting_category:
          anyOf:
            - type: string
            - type: 'null'
        employment_type:
          anyOf:
            - type: string
            - type: 'null'
        seniority:
          anyOf:
            - type: string
            - type: 'null'
        schedule:
          anyOf:
            - type: string
            - type: 'null'
        years_of_experience:
          anyOf:
            - type: string
            - type: 'null'
        occupation:
          anyOf:
            - type: string
            - type: 'null'
        occupation_category:
          anyOf:
            - type: string
            - type: 'null'
        keywords:
          items:
            type: string
          type: array
          default: []
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        sections:
          items:
            $ref: '#/components/schemas/PersonioJobSection'
          type: array
          default: []
        salary:
          anyOf:
            - $ref: '#/components/schemas/PersonioSalary'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PersonioJobSection:
      properties:
        '@type':
          type: string
          default: PersonioJobSection
        name:
          anyOf:
            - type: string
            - type: 'null'
        content:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    PersonioSalary:
      properties:
        '@type':
          type: string
          default: PersonioSalary
        min:
          anyOf:
            - type: number
            - type: 'null'
        max:
          anyOf:
            - type: number
            - type: 'null'
        currency_code:
          anyOf:
            - type: string
            - type: 'null'
        currency_symbol:
          anyOf:
            - type: string
            - type: 'null'
        interval:
          anyOf:
            - type: string
            - 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

````