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

# /smartrecruiters/jobs

> Get a single SmartRecruiters job posting by company board handle and posting id: name, reference number, release date, location (city, region, country, remote/hybrid flags, coordinates), industry, function, department, type of employment, experience level, language, custom fields, structured job-ad sections (company description, job description, qualifications, additional information as HTML), creator, posting and apply URLs, active flag and visibility.

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/jobs.json post /api/smartrecruiters/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/smartrecruiters/jobs:
    post:
      tags:
        - /smartrecruiters
      summary: /smartrecruiters/jobs
      description: >-
        Get a single SmartRecruiters job posting by company board handle and
        posting id: name, reference number, release date, location (city,
        region, country, remote/hybrid flags, coordinates), industry, function,
        department, type of employment, experience level, language, custom
        fields, structured job-ad sections (company description, job
        description, qualifications, additional information as HTML), creator,
        posting and apply URLs, active flag and visibility.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Company board or posting not found
      operationId: __api_smartrecruiters_jobs_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SmartRecruitersJobsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SmartRecruitersJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SmartRecruitersJobsPayload:
      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
    SmartRecruitersJob:
      properties:
        '@type':
          type: string
          default: SmartRecruitersJob
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        uuid:
          anyOf:
            - type: string
            - type: 'null'
        ref_number:
          anyOf:
            - type: string
            - type: 'null'
        released_at:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersLocation'
            - type: 'null'
        industry:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersLabel'
            - type: 'null'
        function:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersLabel'
            - type: 'null'
        department:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersLabel'
            - type: 'null'
        type_of_employment:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersLabel'
            - type: 'null'
        experience_level:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersLabel'
            - type: 'null'
        language:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersLanguage'
            - type: 'null'
        custom_fields:
          items:
            $ref: '#/components/schemas/SmartRecruitersCustomField'
          type: array
          default: []
        job_ad:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersJobAd'
            - type: 'null'
        creator:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersCreator'
            - type: 'null'
        posting_url:
          anyOf:
            - type: string
            - type: 'null'
        apply_url:
          anyOf:
            - type: string
            - type: 'null'
        referral_url:
          anyOf:
            - type: string
            - type: 'null'
        active:
          anyOf:
            - type: boolean
            - type: 'null'
        visibility:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SmartRecruitersLocation:
      properties:
        '@type':
          type: string
          default: SmartRecruitersLocation
        city:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        remote:
          anyOf:
            - type: boolean
            - type: 'null'
        hybrid:
          anyOf:
            - type: boolean
            - type: 'null'
        hybrid_description:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: string
            - type: 'null'
        longitude:
          anyOf:
            - type: string
            - type: 'null'
        full_location:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SmartRecruitersLabel:
      properties:
        '@type':
          type: string
          default: SmartRecruitersLabel
        id:
          anyOf:
            - type: string
            - type: 'null'
        label:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SmartRecruitersLanguage:
      properties:
        '@type':
          type: string
          default: SmartRecruitersLanguage
        code:
          anyOf:
            - type: string
            - type: 'null'
        label:
          anyOf:
            - type: string
            - type: 'null'
        label_native:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SmartRecruitersCustomField:
      properties:
        '@type':
          type: string
          default: SmartRecruitersCustomField
        field_id:
          anyOf:
            - type: string
            - type: 'null'
        field_label:
          anyOf:
            - type: string
            - type: 'null'
        value_id:
          anyOf:
            - type: string
            - type: 'null'
        value_label:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SmartRecruitersJobAd:
      properties:
        '@type':
          type: string
          default: SmartRecruitersJobAd
        company_description:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersJobAdSection'
            - type: 'null'
        job_description:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersJobAdSection'
            - type: 'null'
        qualifications:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersJobAdSection'
            - type: 'null'
        additional_information:
          anyOf:
            - $ref: '#/components/schemas/SmartRecruitersJobAdSection'
            - type: 'null'
      type: object
    SmartRecruitersCreator:
      properties:
        '@type':
          type: string
          default: SmartRecruitersCreator
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          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
    SmartRecruitersJobAdSection:
      properties:
        '@type':
          type: string
          default: SmartRecruitersJobAdSection
        text:
          anyOf:
            - type: string
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````