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

# List presentations

> List presentations in the workspace with optional pagination.



## OpenAPI

````yaml /openapi.json get /v1/presentations
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:
    get:
      summary: List presentations
      description: List presentations in the workspace with optional pagination.
      parameters:
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            description: Max number of results (default 20)
          required: false
          description: Max number of results (default 20)
          name: limit
          in: query
        - schema:
            type: integer
            minimum: 0
            description: Number of results to skip (default 0)
          required: false
          description: Number of results to skip (default 0)
          name: offset
          in: query
        - 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
      responses:
        '200':
          description: Paginated list of presentations
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/Presentation'
                  total:
                    type: integer
                required:
                  - items
                  - total
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Workspace access denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    Presentation:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        status:
          type: string
          enum:
            - generating
            - ready
            - failed
            - stopped
        summary:
          type: string
        slideCount:
          type: integer
        createdAt:
          type: string
        templateName:
          type: string
        themeName:
          type: string
      required:
        - id
        - name
        - status
        - slideCount
        - createdAt
    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.

````