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

# List Skillsets

> Retrieve a list of all available skillsets. This endpoint returns only the `id`, `name`, and `description` of each skillset.




## OpenAPI

````yaml get /skillsets
openapi: 3.0.3
info:
  title: Everday API
  version: 1.0.0
  description: >
    ## Everday API

    This API allows organisations to manage skillsets and onboarding processes.
    Authentication is required for all endpoints using an API key.


    ### Base URL

    The API is hosted at:

    `https://api.ever.day`


    ### API Key Authentication

    To authenticate requests, include your API key in the `x-api-key` header of
    every request.
servers:
  - url: https://api.ever.day
security: []
paths:
  /skillsets:
    get:
      summary: List Skillsets
      description: >
        Retrieve a list of all available skillsets. This endpoint returns only
        the `id`, `name`, and `description` of each skillset.
      responses:
        '200':
          description: A list of skillsets.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SkillsetListItem'
        '401':
          description: Unauthorized. API key is missing or invalid.
        '500':
          description: Internal server error.
      security:
        - apiKeyAuth: []
components:
  schemas:
    SkillsetListItem:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the skillset.
        name:
          type: string
          description: The name of the skillset.
        description:
          type: string
          description: A brief description of the skillset.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: |
        Include your API key in the `x-api-key` header to authenticate requests.

````