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

# /teamtailor/jobs

> Get one published job posting from a company's Teamtailor career board by board handle and job id (or a full job URL): title, hiring organisation, the full HTML description, employment type, department, workplace status, the board's own label/value summary rows, structured locations, salary range, publication and expiry dates, and the hosted and apply URLs.

**Price:** 5 credits

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



## OpenAPI

````yaml /openapi/jobs.json post /api/teamtailor/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/teamtailor/jobs:
    post:
      tags:
        - /teamtailor
      summary: /teamtailor/jobs
      description: >-
        Get one published job posting from a company's Teamtailor career board
        by board handle and job id (or a full job URL): title, hiring
        organisation, the full HTML description, employment type, department,
        workplace status, the board's own label/value summary rows, structured
        locations, salary range, publication and expiry dates, and the hosted
        and apply URLs.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Company board not found, the job is unknown
        or no longer published, or the host given does not serve a Teamtailor
        board
      operationId: __api_teamtailor_jobs_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TeamtailorJobsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TeamtailorJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TeamtailorJobsPayload:
      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
    TeamtailorJob:
      properties:
        '@type':
          type: string
          default: TeamtailorJob
        id:
          type: integer
        company:
          type: string
        company_name:
          anyOf:
            - type: string
            - type: 'null'
        company_url:
          anyOf:
            - type: string
            - type: 'null'
        employment_type:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
        workplace_type:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        locations:
          items:
            $ref: '#/components/schemas/TeamtailorAddress'
          type: array
          default: []
        salary_range:
          anyOf:
            - $ref: '#/components/schemas/TeamtailorSalaryRange'
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        valid_through_at:
          anyOf:
            - type: integer
            - type: 'null'
        summary:
          items:
            $ref: '#/components/schemas/TeamtailorSummaryRow'
          type: array
          default: []
        hosted_url:
          anyOf:
            - type: string
            - type: 'null'
        apply_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - company
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    TeamtailorAddress:
      properties:
        '@type':
          type: string
          default: TeamtailorAddress
        locality:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    TeamtailorSalaryRange:
      properties:
        '@type':
          type: string
          default: TeamtailorSalaryRange
        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
    TeamtailorSummaryRow:
      properties:
        '@type':
          type: string
          default: TeamtailorSummaryRow
        label:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - label
    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

````