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

# List Job Postings

> List job postings for the authenticated organization.



## OpenAPI

````yaml /swagger/v1_schema.yaml get /jobs
openapi: 3.0.3
info:
  title: TalentUnveiled Public API
  version: 1.0.0
  description: API documentation for TalentUnveiled endpoints
servers:
  - url: https://api.talentunveiled.com/api/v1
    description: Production server
security: []
paths:
  /jobs:
    get:
      tags:
        - TalentUnveiled Public API
      summary: List Job Postings
      description: List job postings for the authenticated organization.
      operationId: jobs_list
      parameters:
        - name: limit
          required: false
          in: query
          description: Number of results to return per page.
          schema:
            type: integer
        - name: offset
          required: false
          in: query
          description: The initial index from which to return the results.
          schema:
            type: integer
        - in: query
          name: status
          schema:
            type: string
          description: Filter by status (active, closed, draft)
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedAPIJobPostingList'
          description: ''
      security:
        - apiKeyAuth: []
        - {}
components:
  schemas:
    PaginatedAPIJobPostingList:
      type: object
      required:
        - count
        - results
      properties:
        count:
          type: integer
          example: 123
        next:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?offset=400&limit=100
        previous:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?offset=200&limit=100
        results:
          type: array
          items:
            $ref: '#/components/schemas/APIJobPosting'
    APIJobPosting:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        title:
          type: string
          readOnly: true
        location:
          type: string
          readOnly: true
        status:
          allOf:
            - $ref: '#/components/schemas/JobStatusEnum'
          readOnly: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        description:
          type: string
          readOnly: true
      required:
        - created_at
        - description
        - id
        - location
        - status
        - title
    JobStatusEnum:
      enum:
        - active
        - paused
        - closed
        - draft
      type: string
      description: |-
        * `active` - Active
        * `paused` - Paused
        * `closed` - Closed
        * `draft` - Draft
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: >-
        API key authentication for the public API. Pass your API key as a Bearer
        token.

````