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

# Browse jobs

> List active job postings with optional filters.



## OpenAPI

````yaml /api-reference/openapi.json get /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:
    get:
      summary: Browse jobs
      description: List active job postings with optional filters.
      operationId: listJobs
      parameters:
        - name: organization_id
          in: query
          schema:
            type: string
          description: Filter by organization
        - name: location_id
          in: query
          schema:
            type: string
          description: Filter by location
        - name: job_type
          in: query
          schema:
            type: string
            enum:
              - full_time
              - part_time
              - contract
              - internship
              - freelance
              - volunteer
          description: Filter by employment type
        - name: experience
          in: query
          schema:
            type: string
          description: Filter by experience level
        - name: hashtags
          in: query
          schema:
            type: string
          description: Comma-separated tags
        - name: project_id
          in: query
          schema:
            type: string
          description: Filter by project
        - name: page
          in: query
          schema:
            type: integer
            default: 1
        - name: limit
          in: query
          schema:
            type: integer
            default: 10
      responses:
        '200':
          description: A page of jobs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobList'
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

````