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

# List PAL Skills

> List the skills attached to a PAL. The response is an object keyed by `skill_id`.


<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
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:
    parameters:
      - name: pal_id
        in: path
        required: true
        description: The unique identifier of the PAL.
        schema:
          type: string
          example: pcb7a34da5fe
    get:
      tags:
        - Skills
      summary: List PAL Skills
      description: >
        List the skills attached to a PAL. The response is an object keyed by
        `skill_id`.
      operationId: listPersonaSkills
      responses:
        '200':
          description: Successfully retrieved the PAL's skill attachments
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    description: Skill attachments keyed by `skill_id`.
                    additionalProperties:
                      $ref: '#/components/schemas/SkillAttachment'
                    example:
                      internet_search:
                        skill_id: internet_search
                        config: {}
                        attached_at: '2026-06-10T14:30:45.123456+00:00'
                        updated_at: '2026-06-10T14:30:45.123456+00:00'
                      presentation:
                        skill_id: presentation
                        config:
                          document_ids:
                            - d1234567890
                            - d2468101214
                          slides_trigger: walk_the_deck
                          prompt: Walk the participant through the Q4 roadmap deck.
                        attached_at: '2026-06-10T13:15:20.654321+00:00'
                        updated_at: '2026-06-10T14:25:10.987654+00:00'
                      magic_canvas:
                        skill_id: magic_canvas
                        config:
                          components:
                            chart:
                              enabled: false
                        attached_at: '2026-06-10T12:00:00.000000+00:00'
                        updated_at: '2026-06-10T12:00:00.000000+00:00'
        '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
      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

````