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

# Generate presentation

> Generate a new AI presentation. Call GET /templates and GET /themes first to get valid IDs.



## OpenAPI

````yaml /openapi.json post /v1/presentations/generate
openapi: 3.1.0
info:
  title: Steerco API
  version: 1.0.0
  description: >-
    REST API and MCP server for managing presentations, templates, themes, and
    entities.
servers:
  - url: https://api.getsteerco.com
security: []
paths:
  /v1/presentations/generate:
    post:
      summary: Generate presentation
      description: >-
        Generate a new AI presentation. Call GET /templates and GET /themes
        first to get valid IDs.
      parameters:
        - schema:
            type: string
            description: >-
              The workspace ID. Get available workspaces from GET
              /v1/workspaces.
          required: true
          description: The workspace ID. Get available workspaces from GET /v1/workspaces.
          in: header
          name: X-Workspace-Id
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                instructions:
                  type: string
                  description: Natural language instructions for the presentation
                templateId:
                  type: string
                  description: Template ID from list templates
                themeId:
                  type: string
                  description: Theme ID from list themes
              required:
                - instructions
                - templateId
                - themeId
      responses:
        '200':
          description: Generation started
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenerateResult'
        '403':
          description: Plan limit reached or access denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    GenerateResult:
      type: object
      properties:
        presentationId:
          type: string
        summary:
          type: string
        url:
          type: string
      required:
        - presentationId
        - summary
        - url
    Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
      required:
        - error
        - code
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: API key (ak_ prefix). Generate one from your Steerco profile settings.

````