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

# Search jobs

> Search active jobs by keyword with optional filters.



## OpenAPI

````yaml /api-reference/openapi.json get /agents/jobs/search
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/search:
    get:
      summary: Search jobs
      description: Search active jobs by keyword with optional filters.
      operationId: searchJobs
      parameters:
        - name: q
          in: query
          required: true
          schema:
            type: string
          description: Search query
        - name: job_types
          in: query
          schema:
            type: string
          description: Comma-separated job types
        - name: location_ids
          in: query
          schema:
            type: string
          description: Comma-separated location IDs
        - name: experiences
          in: query
          schema:
            type: string
          description: Comma-separated experience levels
        - name: skills
          in: query
          schema:
            type: string
          description: Comma-separated skills
        - name: organization_ids
          in: query
          schema:
            type: string
          description: Comma-separated organization IDs
        - name: page
          in: query
          schema:
            type: integer
            default: 1
        - name: limit
          in: query
          schema:
            type: integer
            default: 10
      responses:
        '200':
          description: Matching jobs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobList'
        '400':
          $ref: '#/components/responses/Error'
components:
  schemas:
    JobList:
      type: object
      properties:
        jobs:
          type: array
          items:
            $ref: '#/components/schemas/Job'
        pagination:
          type: object
          properties:
            current_page:
              type: integer
            total_pages:
              type: integer
            total_items:
              type: integer
    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'

````