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

# Get a skill

> Return a single skill, including its `instructions` (the body of the skill's SKILL.md file).



## OpenAPI

````yaml /openapi.yaml get /api/v1/spaces/{spaceId}/skills/{skillId}
openapi: 3.1.0
info:
  title: Nuwacom API
  description: API for Nuwacom application
  version: 1.0.0
servers:
  - url: https://{customer-tenant}.nuwacom.ai
    description: Nuwacom API
security:
  - bearerAuth: []
paths:
  /api/v1/spaces/{spaceId}/skills/{skillId}:
    get:
      tags:
        - Skills
      summary: Get a skill
      description: >-
        Return a single skill, including its `instructions` (the body of the
        skill's SKILL.md file).
      operationId: getApiV1SpacesBySpaceIdSkillsBySkillId
      parameters:
        - in: path
          name: spaceId
          schema:
            anyOf:
              - type: string
                minLength: 2
                maxLength: 6
              - type: string
                minLength: 21
                maxLength: 21
            description: ID of the space the skill belongs to.
          required: true
        - in: path
          name: skillId
          schema:
            type: string
            format: uuid
            description: Unique ID of the skill.
          required: true
      responses:
        '200':
          description: Skill returned successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    description: >-
                      Unique ID of the skill. Use it to attach the skill to
                      agents.
                  spaceId:
                    anyOf:
                      - type: string
                        minLength: 2
                        maxLength: 6
                      - type: string
                        minLength: 21
                        maxLength: 21
                    description: ID of the space the skill belongs to.
                  name:
                    type: string
                  description:
                    type: string
                  slug:
                    type: string
                    description: >-
                      URL-safe, immutable identifier generated from the initial
                      name.
                  source:
                    enum:
                      - manual
                      - upload
                      - github
                      - ai_generated
                    description: >-
                      How the skill was created. Skills created via this API
                      have source "manual".
                  sourceUrl:
                    anyOf:
                      - type: string
                        nullable: true
                    description: >-
                      Source URL for skills imported from GitHub, null
                      otherwise.
                  createdAt:
                    type: string
                  updatedAt:
                    type: string
                  instructions:
                    anyOf:
                      - type: string
                        nullable: true
                    description: >-
                      Markdown instructions from the body of the skill's
                      SKILL.md file. null when the file cannot be read.
                required:
                  - id
                  - spaceId
                  - name
                  - description
                  - slug
                  - source
                  - sourceUrl
                  - createdAt
                  - updatedAt
                  - instructions
        '403':
          description: >-
            The caller lacks permission to view skills in this space, or the
            skills feature is disabled.
        '404':
          description: Skill not found in the provided space.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````