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

> Returns a paginated list of job types for the company. Deleted job types are excluded. Use `GET /job-types/{JOB_TYPE_ID}` to fetch the full configuration for a single job type.



## OpenAPI

````yaml GET /job-types
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-types:
    get:
      summary: List job types
      description: >-
        Returns a paginated list of job types for the company. Deleted job types
        are excluded. Use `GET /job-types/{JOB_TYPE_ID}` to fetch the full
        configuration for a single job type.
      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 types retrieved successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - total_pages
                  - total
                  - page
                  - limit
                properties:
                  data:
                    type: object
                    required:
                      - job_types
                    properties:
                      job_types:
                        type: array
                        items:
                          $ref: '#/components/schemas/JobTypeSummary'
                  total_pages:
                    type: integer
                    description: Total number of pages available.
                  total:
                    type: integer
                    description: Total number of job types available.
                  page:
                    type: integer
                    description: Current page number.
                  limit:
                    type: integer
                    description: Fixed number of job types returned per page.
                    default: 20
              example:
                data:
                  job_types:
                    - id: 91f3c3e7-2b1d-4461-a4a1-b4f6eb8480bf
                      name: Store Manager
                      created_at: '2026-06-21T20:45:11.742Z'
                    - id: 776d8d02-884a-4bf6-a90e-75ed7a931e03
                      name: Barista
                      created_at: '2026-06-19T17:10:22.008Z'
                total_pages: 1
                total: 2
                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:
    JobTypeSummary:
      type: object
      required:
        - id
        - name
        - created_at
      properties:
        id:
          type: string
          format: uuid
          description: The ID of the job type.
        name:
          type: string
          description: The name of the job type.
        created_at:
          type: string
          format: date-time
          description: ISO 8601 timestamp of when the job type was created.
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````