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

# Export presentation

> Export a presentation to PPTX or PDF. Returns a temporary download URL (valid 14 hours). The presentation must have status 'ready'. May take 1-3 minutes.



## OpenAPI

````yaml /openapi.json post /v1/presentations/{presentationId}/export
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/{presentationId}/export:
    post:
      summary: Export presentation
      description: >-
        Export a presentation to PPTX or PDF. Returns a temporary download URL
        (valid 14 hours). The presentation must have status 'ready'. May take
        1-3 minutes.
      parameters:
        - schema:
            type: string
            pattern: ^[a-f\d]{24}$/i
            description: The presentation ID to export
          required: true
          description: The presentation ID to export
          name: presentationId
          in: path
        - 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:
                format:
                  type: string
                  enum:
                    - pptx
                    - pdf
                  description: 'Export format (default: pptx)'
      responses:
        '200':
          description: Export completed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExportResult'
        '400':
          description: Export failed — presentation not ready or not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    ExportResult:
      type: object
      properties:
        downloadUrl:
          type: string
        expiresAt:
          type: string
      required:
        - downloadUrl
        - expiresAt
    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.

````