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

# List skills

> Returns all skills defined in the account.



## OpenAPI

````yaml https://live1-service-7042312-f94c764b.us.monday.app/api/public/v1/openapi.json get /api/public/v1/skill
openapi: 3.1.0
info:
  title: SuperPlanner Public API
  description: >-
    Public API for integrating with SuperPlanner. Authenticate all requests with
    `Authorization: Bearer <token>`, where the token is an API key generated in
    the SuperPlanner settings.
  version: 1.0.0
servers:
  - url: https://live1-service-7042312-f94c764b.us.monday.app
    description: United States
  - url: https://live1-service-7042312-f94c764b.eu.monday.app
    description: Europe
  - url: https://live1-service-7042312-f94c764b.au.monday.app
    description: Australia
  - url: https://live1-service-7042312-f94c764b.il.monday.app
    description: Israel
security: []
paths:
  /api/public/v1/skill:
    get:
      tags:
        - Skills
      summary: List skills
      description: Returns all skills defined in the account.
      operationId: get_skills_api_public_v1_skill_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/Skill'
                type: array
                title: Response Get Skills Api Public V1 Skill Get
      security:
        - HTTPBearer: []
components:
  schemas:
    Skill:
      properties:
        _id:
          type: string
          title: Id
          description: Unique identifier of the skill.
        accountId:
          type: string
          title: Accountid
          description: Account this skill belongs to.
        name:
          type: string
          title: Name
          description: Display name of the skill.
        createDate:
          type: string
          format: date-time
          title: Createdate
          description: UTC timestamp when the skill was created.
      type: object
      required:
        - accountId
        - name
      title: Skill
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````