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

# Get PAL Skill

> Retrieve a single skill attachment on a PAL.


<Info>
  For AI agents, use `https://docs.tavus.io/openapi.yaml` for the full HTTP API contract.
</Info>


## OpenAPI

````yaml get /v2/pals/{pal_id}/skills/{skill_id}
openapi: 3.0.3
info:
  title: Tavus Developer API Collection
  version: 1.0.0
  contact: {}
servers:
  - url: https://tavusapi.com
security:
  - apiKey: []
tags:
  - name: Videos
  - name: Faces
  - name: Voices
  - name: Conversations
  - name: Deployments
  - name: PALs
  - name: Tools
  - name: PAL Tools
  - name: Pronunciation Dictionaries
  - name: Replacements
  - name: Transcriptions
  - name: Documents
paths:
  /v2/pals/{pal_id}/skills/{skill_id}:
    parameters:
      - name: pal_id
        in: path
        required: true
        description: The unique identifier of the PAL.
        schema:
          type: string
          example: pcb7a34da5fe
      - name: skill_id
        in: path
        required: true
        description: The unique identifier of the skill.
        schema:
          type: string
          example: presentation
    get:
      tags:
        - Skills
      summary: Get PAL Skill
      description: |
        Retrieve a single skill attachment on a PAL.
      operationId: getPersonaSkill
      responses:
        '200':
          description: Successfully retrieved the skill attachment
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SkillAttachment'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: PAL not found
        '401':
          description: UNAUTHORIZED
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Invalid access token
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Skill 'presentation' is not attached to this PAL
      security:
        - apiKey: []
components:
  schemas:
    SkillAttachment:
      type: object
      description: A skill attached to a PAL.
      properties:
        skill_id:
          type: string
          description: The unique identifier of the attached skill.
          example: presentation
        config:
          type: object
          description: >
            The skill's configuration. Empty object for skills with no
            configuration.


            Shape depends on `skill_id` - see
            [Skills](/sections/conversational-video-interface/skills/overview).
            For `magic_canvas`, `config.components` is a sparse overlay; see
            [Canvas
            configuration](/sections/conversational-video-interface/magic-canvas/api/configuration).
          example:
            document_ids:
              - d1234567890
              - d2468101214
            slides_trigger: walk_the_deck
            prompt: Walk the participant through the Q4 roadmap deck.
        attached_at:
          type: string
          description: ISO 8601 timestamp of when the skill was first attached to the PAL.
          example: '2026-06-10T14:30:45.123456+00:00'
        updated_at:
          type: string
          description: ISO 8601 timestamp of when the attachment was last modified.
          example: '2026-06-10T14:30:45.123456+00:00'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````