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

# List Job Openings

> Returns a paginated list of hiring job openings for the company. Paused job openings are included; deleted and internal training records are excluded. Use `GET /job-openings/{JOB_OPENING_ID}` to fetch full details for a single job opening.



## OpenAPI

````yaml GET /job-openings
openapi: 3.0.1
info:
  title: Alpharun API
  description: Alpharun REST API reference
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.alpharun.com/api/v1
security:
  - bearerAuth: []
paths:
  /job-openings:
    get:
      summary: List job openings
      description: >-
        Returns a paginated list of hiring job openings for the company. Paused
        job openings are included; deleted and internal training records are
        excluded. Use `GET /job-openings/{JOB_OPENING_ID}` to fetch full details
        for a single job opening.
      parameters:
        - name: page
          in: query
          description: Page number to retrieve. Defaults to `1`.
          required: false
          schema:
            type: integer
            default: 1
            minimum: 1
      responses:
        '200':
          description: Job openings retrieved successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - total_pages
                  - total
                  - page
                  - limit
                properties:
                  data:
                    type: object
                    required:
                      - job_openings
                    properties:
                      job_openings:
                        type: array
                        items:
                          $ref: '#/components/schemas/JobOpeningSummary'
                  total_pages:
                    type: integer
                    description: Total number of pages available.
                  total:
                    type: integer
                    description: Total number of job openings available.
                  page:
                    type: integer
                    description: Current page number.
                  limit:
                    type: integer
                    description: Fixed number of job openings returned per page.
                    default: 20
              example:
                data:
                  job_openings:
                    - id: 2f4ac4d8-8ec7-48d1-81cf-9a9552d6fd8d
                      name: Store Manager - San Francisco
                      status: live
                      created_at: '2026-06-24T18:12:48.513Z'
                      interview_count: 42
                      pending_interview_count: 7
                      job_type:
                        id: 91f3c3e7-2b1d-4461-a4a1-b4f6eb8480bf
                        name: Store Manager
                    - id: a0b84468-9ce3-4f7f-b5c4-44c130bb9b77
                      name: Barista - Oakland
                      status: paused
                      created_at: '2026-06-22T15:04:31.221Z'
                      interview_count: 18
                      pending_interview_count: 3
                      job_type: null
                total_pages: 3
                total: 54
                page: 1
                limit: 20
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized - Invalid or missing API key
components:
  schemas:
    JobOpeningSummary:
      type: object
      required:
        - id
        - name
        - status
        - created_at
        - interview_count
        - pending_interview_count
        - job_type
      properties:
        id:
          type: string
          format: uuid
          description: The ID of the job opening.
        name:
          type: string
          description: The name of the job opening.
        status:
          type: string
          enum:
            - live
            - paused
          description: The current status of the job opening.
        created_at:
          type: string
          format: date-time
          description: ISO 8601 timestamp of when the job opening was created.
        interview_count:
          type: integer
          description: Total number of interviews associated with this job opening.
        pending_interview_count:
          type: integer
          description: Number of pending interviews associated with this job opening.
        job_type:
          type: object
          nullable: true
          description: The job type associated with this job opening, if any.
          required:
            - id
            - name
          properties:
            id:
              type: string
              format: uuid
              description: The ID of the job type.
            name:
              type: string
              description: The name of the job type.
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````