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

# Get Skillset Details

> Retrieve detailed information about a specific skillset, including its associated skills.




## OpenAPI

````yaml get /skillsets/{id}
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/{id}:
    get:
      summary: Get Skillset Details
      description: >
        Retrieve detailed information about a specific skillset, including its
        associated skills.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The unique identifier of the skillset.
      responses:
        '200':
          description: Skillset details retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Skillset'
        '401':
          description: Unauthorized. API key is missing or invalid.
        '404':
          description: Skillset not found.
        '500':
          description: Internal server error.
      security:
        - apiKeyAuth: []
components:
  schemas:
    Skillset:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        skills:
          type: array
          description: A list of skills included in the skillset.
          items:
            $ref: '#/components/schemas/Skill'
    Skill:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        type:
          type: string
          enum:
            - KNOWLEDGE
            - TRANSVERSAL
            - FUNCTIONAL
          description: The type of skill.
        requiredRevel:
          type: integer
          minimum: 1
          maximum: 8
          description: The minimum proficiency level required for the skill (1-8).
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: |
        Include your API key in the `x-api-key` header to authenticate requests.

````