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

> List every skill in the registry. Skills are pre-built capabilities authored by Tavus that you can attach to a PAL - see [Skills](/sections/conversational-video-interface/skills/overview).


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


## OpenAPI

````yaml get /v2/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/skills:
    get:
      tags:
        - Skills
      summary: List Skills
      description: >
        List every skill in the registry. Skills are pre-built capabilities
        authored by Tavus that you can attach to a PAL - see
        [Skills](/sections/conversational-video-interface/skills/overview).
      operationId: listSkills
      responses:
        '200':
          description: Successfully retrieved the skill registry
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        skill_id:
                          type: string
                          description: >-
                            The unique identifier of the skill. Used as the path
                            parameter on the PAL skill endpoints.
                          example: internet_search
                        display_name:
                          type: string
                          example: Internet Search
                        description:
                          type: string
                          example: >-
                            Lets the PAL answer questions with up-to-date
                            information from the web.
        '401':
          description: UNAUTHORIZED
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Invalid access token
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````