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

# Get a template example

> Return the example presentation associated with a standard template.

[Read the presentation workflow guide](/api-guides/presentation-generation-flows).



## OpenAPI

````yaml /archive/v0.9.0-beta/openapi/cloud.json get /api/v3/standard-template/{id}/example
openapi: 3.1.0
info:
  title: Presenton Cloud API
  version: v0.9.0-beta
  description: Supported public API for managed Presenton Cloud integrations.
servers:
  - url: https://api.presenton.ai
    description: Presenton Cloud
security: []
tags:
  - name: Presentations
    description: Generate and manage presentations.
  - name: Files and media
    description: Upload source files and images.
  - name: Templates and design
    description: Select reusable presentation designs.
  - name: Async and webhooks
    description: Monitor background work and receive events.
paths:
  /api/v3/standard-template/{id}/example:
    get:
      tags:
        - V3 Standard Template
      summary: Get a template example
      description: >-
        Return the example presentation associated with a standard template.


        [Read the presentation workflow
        guide](/api-guides/presentation-generation-flows).
      operationId: get_standard_template_example_api_v3_standard_template__id__example_get
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            title: Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TemplateExampleV3'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          $ref: '#/components/responses/ServerError'
      security:
        - BearerAuth: []
      externalDocs:
        description: Read the presentation workflow guide
        url: /api-guides/presentation-generation-flows
components:
  schemas:
    TemplateExampleV3:
      properties:
        standard_template:
          type: string
          title: Standard Template
        slides:
          items:
            $ref: '#/components/schemas/SlideExample'
          type: array
          title: Slides
      type: object
      required:
        - standard_template
        - slides
      title: TemplateExampleV3
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SlideExample:
      properties:
        layout:
          type: string
          title: Layout
        content:
          additionalProperties: true
          type: object
          title: Content
      type: object
      required:
        - layout
        - content
      title: SlideExample
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  responses:
    Unauthorized:
      description: Authentication is missing or invalid.
    ServerError:
      description: Presenton or one of its configured dependencies failed.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Presenton API token

````