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

# List templates

> List report-generation templates visible to the current API key scope.



## OpenAPI

````yaml /developer-docs/api/openapi.json get /v1/public/templates
openapi: 3.1.0
info:
  title: Everbility Public API
  version: 1.0.0
  description: >-
    Pull reports from Everbility, upload notes and files, poll asynchronous
    jobs, and generate reports from saved templates. Partner endpoints let
    approved platforms connect practices with OAuth 2.0, launch report-writing
    sessions, receive signed lifecycle webhooks, and retrieve completed
    documents.
servers:
  - url: https://api.everbility.com
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/public/templates:
    get:
      tags:
        - external
      summary: List templates
      description: List report-generation templates visible to the current API key scope.
      operationId: list_templates_v1_external_templates_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ExternalTemplatePreview'
                type: array
                title: Response List Templates V1 External Templates Get
      security:
        - bearerAuth: []
components:
  schemas:
    ExternalTemplatePreview:
      properties:
        _id:
          type: string
          title: ' Id'
        title:
          type: string
          title: Title
        created_at:
          type: string
          format: date-time
          title: Created At
        is_org_template:
          type: boolean
          title: Is Org Template
          default: false
      type: object
      required:
        - _id
        - title
        - created_at
      title: ExternalTemplatePreview
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Use a Clerk-backed Everbility user or organisation API key directly as
        the bearer token.

````