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

# /icims/jobs

> Get one job posting from a company's iCIMS career board by board handle and posting id (or a full posting URL): title, HTML and plain-text description, qualifications, responsibilities, category, employment type, hiring organization and brand, the full location breakdown with coordinates and additional locations, posting, update and expiry dates, salary values when the board publishes them, board tags, the apply URL and the canonical posting URL.

**Price:** 1 credit

**⚠️ Common errors:** 412: Company board not found, or the board has no posting with this id



## OpenAPI

````yaml /openapi/jobs.json post /api/icims/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/icims/jobs:
    post:
      tags:
        - /icims
      summary: /icims/jobs
      description: >-
        Get one job posting from a company's iCIMS career board by board handle
        and posting id (or a full posting URL): title, HTML and plain-text
        description, qualifications, responsibilities, category, employment
        type, hiring organization and brand, the full location breakdown with
        coordinates and additional locations, posting, update and expiry dates,
        salary values when the board publishes them, board tags, the apply URL
        and the canonical posting URL.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Company board not found, or the board has no
        posting with this id
      operationId: __api_icims_jobs_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IcimsJobsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IcimsJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IcimsJobsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
        req_id:
          type: string
          minLength: 1
      type: object
      required:
        - company
        - req_id
    IcimsJob:
      properties:
        '@type':
          type: string
          default: IcimsJob
        id:
          type: string
        company:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        ats_code:
          anyOf:
            - type: string
            - type: 'null'
        description_text:
          anyOf:
            - type: string
            - type: 'null'
        qualifications:
          anyOf:
            - type: string
            - type: 'null'
        responsibilities:
          anyOf:
            - type: string
            - type: 'null'
        category:
          items:
            type: string
          type: array
          default: []
        categories:
          items:
            type: string
          type: array
          default: []
        department:
          anyOf:
            - type: string
            - type: 'null'
        employment_type:
          anyOf:
            - type: string
            - type: 'null'
        hiring_organization:
          anyOf:
            - type: string
            - type: 'null'
        hiring_organization_logo:
          anyOf:
            - type: string
            - type: 'null'
        hiring_flow_name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        location_name:
          anyOf:
            - type: string
            - type: 'null'
        full_location:
          anyOf:
            - type: string
            - type: 'null'
        short_location:
          anyOf:
            - type: string
            - type: 'null'
        street_address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        location_type:
          anyOf:
            - type: string
            - type: 'null'
        multiple_locations:
          anyOf:
            - type: boolean
            - type: 'null'
        additional_locations:
          items:
            $ref: '#/components/schemas/IcimsLocation'
          type: array
          default: []
        posted_at:
          anyOf:
            - type: integer
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        expires_at:
          anyOf:
            - type: integer
            - type: 'null'
        salary_min_value:
          anyOf:
            - type: number
            - type: 'null'
        salary_max_value:
          anyOf:
            - type: number
            - type: 'null'
        salary_value:
          anyOf:
            - type: number
            - type: 'null'
        salary_currency:
          anyOf:
            - type: string
            - type: 'null'
        salary_frequency:
          anyOf:
            - type: string
            - type: 'null'
        promotion_value:
          anyOf:
            - type: integer
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        tags:
          items:
            type: string
          type: array
          default: []
        tag_groups:
          items:
            $ref: '#/components/schemas/IcimsTagGroup'
          type: array
          default: []
        applyable:
          anyOf:
            - type: boolean
            - type: 'null'
        li_easy_applyable:
          anyOf:
            - type: boolean
            - type: 'null'
        external:
          anyOf:
            - type: boolean
            - type: 'null'
        internal:
          anyOf:
            - type: boolean
            - type: 'null'
        searchable:
          anyOf:
            - type: boolean
            - type: 'null'
        is_front_line_ai_job:
          anyOf:
            - type: boolean
            - type: 'null'
        source:
          anyOf:
            - type: string
            - type: 'null'
        client_code:
          anyOf:
            - type: string
            - type: 'null'
        apply_url:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - company
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IcimsLocation:
      properties:
        '@type':
          type: string
          default: IcimsLocation
        location_name:
          anyOf:
            - type: string
            - type: 'null'
        full_location:
          anyOf:
            - type: string
            - type: 'null'
        short_location:
          anyOf:
            - type: string
            - type: 'null'
        street_address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        location_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    IcimsTagGroup:
      properties:
        '@type':
          type: string
          default: IcimsTagGroup
        name:
          type: string
        values:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - name
    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

````