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

# Obtener documentación del plugin

> Obtén el esquema de configuración, las funciones y los ejemplos de código de un plugin.



## OpenAPI

````yaml GET /plugins/{pluginId}
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/{pluginId}:
    get:
      tags:
        - Plugins
      summary: Get plugin docs
      description: >-
        Fetch the full markdown docs for a plugin: its config schema, the
        functions it exposes, and code examples showing how a slide's face.tsx
        calls it (e.g. useFormPlugin / usePresenterPlugin). Read this before
        configuring the plugin.
      operationId: getPluginDocs
      parameters:
        - schema:
            type: string
            description: The plugin ID from listPlugins.
          required: true
          name: pluginId
          in: path
      responses:
        '200':
          description: Plugin docs
          content:
            application/json:
              schema:
                type: object
                properties:
                  pluginId:
                    type: string
                  docs:
                    type: string
                    description: The plugin docs as a markdown string.
                required:
                  - pluginId
                  - docs
        '404':
          description: Unknown plugin
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
        hint:
          type: string
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key with "faces_" prefix. Create one at Settings > Developers.

````