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

# List document templates

> Returns all available document templates.

Each entry contains metadata (name, publisher, category, description) only — the template content payload is excluded.



## OpenAPI

````yaml get /templates/documents
openapi: 3.1.0
info:
  title: HERO API
  version: current
  description: |-
    The HERO REST API.

    See https://developers.myhero.so for the rendered docs.
servers:
  - url: https://app.myhero.so
security: []
paths:
  /templates/documents:
    get:
      tags:
        - Templates
      summary: List document templates
      description: >-
        Returns all available document templates.


        Each entry contains metadata (name, publisher, category, description)
        only — the template content payload is excluded.
      operationId: getDocumentTemplates
      responses:
        '200':
          description: 200 response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        _id:
                          type: string
                        type:
                          type: string
                          enum:
                            - project
                            - document
                        name:
                          type: string
                        publisher:
                          type: string
                        category:
                          type: string
                        description:
                          type: string
                        createdAt:
                          type: number
                        updatedAt:
                          type: number
                      required:
                        - _id
                        - type
                        - name
                        - createdAt
                        - updatedAt
                required:
                  - data
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: HERO personal access token

````