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

# Get Skillsets

> Returns a paginated list of all skillsets.

<Info>
  This endpoint returns paginated results. Use `items_per_page` and `page` query parameters to control pagination. The response includes a `total` field with the full count of skillsets.
</Info>


## OpenAPI

````yaml api-reference/v01.12.00/openapi-v01.12.00.json GET /skillsets
openapi: 3.0.0
info:
  title: Roosted
  version: 0.1.12
  contact:
    name: Support
    url: https://support.roostedhr.com/support/home
    email: support@roostedhr.com
  description: |-
    Enterprise API

    Sandbox keys and Production keys are requested from support
servers:
  - url: https://api.roostedhr.com/api/1_12
  - url: https://sandbox.roostedhr.com/api/1_12
security:
  - X-API-KEY: []
tags:
  - name: Announcements
  - name: Areas
  - name: Clients
  - name: Company
  - name: Configuration
  - name: Events
  - name: Locations
  - name: Payroll Groups
  - name: Rate Cards
  - name: Shifts
  - name: Skillsets
  - name: Time Tracking
  - name: Wage Rules
  - name: Workers
paths:
  /skillsets:
    parameters: []
    get:
      tags:
        - Skillsets
      summary: Get Skillsets
      description: Returns a paginated list of all skillsets.
      operationId: get-skillsets
      parameters:
        - schema:
            type: integer
            minimum: 1
            maximum: 100
          in: query
          name: items_per_page
          description: Number of items per page (1–100)
        - schema:
            type: integer
            minimum: 1
          in: query
          name: page
          description: Page number
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  skillsets:
                    type: array
                    items:
                      $ref: '#/components/schemas/Skillset'
                  total:
                    type: integer
                    description: Total number of skillsets
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                Invalid page parameter:
                  value:
                    code: SKL-900
                    error: Invalid page parameter
                Invalid items_per_page parameter:
                  value:
                    code: SKL-900
                    error: Invalid items_per_page parameter
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                Invalid or missing API key:
                  value:
                    code: ATH-100
                    error: Invalid or missing API key
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                Skillset not found:
                  value:
                    code: SKL-700
                    error: Skillset not found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                An unexpected error occurred:
                  value:
                    code: SKL-900
                    error: An unexpected error occurred
components:
  schemas:
    Skillset:
      type: object
      description: A skillset (role) that can be assigned to workers and shifts.
      properties:
        id:
          type: integer
          description: Skillset identifier
        role_title:
          type: string
          description: Skillset name
        default_time:
          type: string
          example: '13:00'
          description: Default shift start time (HH:mm)
        default_comments:
          type: string
          nullable: true
          description: Default shift comments
        default_payroll_group:
          type: string
          nullable: true
          description: Default payroll group code
        on_for_new_signups:
          type: integer
          minimum: 0
          maximum: 1
          description: >-
            Whether this skillset is auto-assigned to new workers (0 = no, 1 =
            yes)
        client_portal_access:
          type: integer
          minimum: 0
          maximum: 1
          description: >-
            Whether this skillset is visible in the client portal (0 = no, 1 =
            yes)
  securitySchemes:
    X-API-KEY:
      name: X-API-KEY
      type: apiKey
      in: header

````