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

# Listar plugins

> Lista los plugins de face disponibles para añadir a una diapositiva.



## OpenAPI

````yaml GET /plugins
openapi: 3.1.0
info:
  title: Faces API
  version: '1.0'
  description: >-
    Faces API for creating and managing presentations. Generate presentations
    from prompts, or read and write individual slides. Each slide is a React
    component (face.tsx) with content blocks (face.content.json) and editor
    controls (face.controls.json).
servers:
  - url: https://faces.app/api/v1
    description: API v1
security:
  - bearerAuth: []
paths:
  /plugins:
    get:
      tags:
        - Plugins
      summary: List available plugins
      description: >-
        List the face plugins available to attach to a slide. Plugins add
        runtime behaviors a slide's React code can't express on its own, such as
        collecting form submissions or embedding a live AI video presenter. Call
        getPluginDocs for a plugin's config schema and code examples before
        configuring it.
      operationId: listPlugins
      responses:
        '200':
          description: Available plugins
          content:
            application/json:
              schema:
                type: object
                properties:
                  plugins:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: The plugin ID, e.g. 'form' or 'presenter'.
                        displayName:
                          type: string
                        description:
                          type: string
                      required:
                        - id
                        - displayName
                        - description
                required:
                  - plugins
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key with "faces_" prefix. Create one at Settings > Developers.

````