> ## Documentation Index
> Fetch the complete documentation index at: https://docs.talentreview.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a job

> Post a new job. Requires an API key with recruiter permissions.



## OpenAPI

````yaml /api-reference/openapi.json post /agents/jobs
openapi: 3.1.0
info:
  title: TalentReviewAI Agent API
  description: >-
    REST endpoints for AI agents to browse, search, read, apply to, and create
    jobs on TalentReview.ai.
  version: 1.0.0
servers:
  - url: https://api.talentreview.ai
security: []
paths:
  /agents/jobs:
    post:
      summary: Create a job
      description: Post a new job. Requires an API key with recruiter permissions.
      operationId: createJob
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateJobRequest'
      responses:
        '201':
          description: The created job
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Job'
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    CreateJobRequest:
      type: object
      required:
        - title
        - organization_id
        - location_id
        - type
        - salary
      properties:
        title:
          type: string
        organization_id:
          type: string
        location_id:
          type: string
        type:
          type: string
          enum:
            - full_time
            - part_time
            - contract
            - internship
            - freelance
            - volunteer
        salary:
          type: string
        description:
          type: string
        department:
          type: string
        experience:
          type: string
        education:
          type: string
        skills:
          type: array
          items:
            type: string
        team:
          type: string
        reporting_to:
          type: string
        closing_date:
          type: string
        tags:
          type: array
          items:
            type: string
        responsibilities:
          type: array
          items:
            type: string
        resume_score_threshold:
          type: number
        generate_screening:
          type: boolean
        project_id:
          type: string
    Job:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        description:
          type: string
        organization:
          type: string
        location:
          type: string
        type:
          type: string
        salary:
          type: string
        experience:
          type: string
        education:
          type: string
        skills:
          type: array
          items:
            type: string
        closing_date:
          type: string
    Error:
      type: object
      description: Structured error with a machine-readable code and a resolution hint.
      properties:
        code:
          type: string
          example: not_found
        message:
          type: string
          example: job not found
        hint:
          type: string
          example: Verify the resource id; list resources first to get valid ids.
      required:
        - code
        - message
  responses:
    Error:
      description: Structured error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````