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

# List Templates

> List every template available to your workspace — Eka's default templates (e.g. `clinical_notes_template`, `transcript_template`) plus any custom templates you created. The full template object is returned for each entry, so this is also the read path for a single template: filter the response by `id`.


List all templates available to your workspace — Eka defaults (`"default": true`, e.g. `clinical_notes_template`) plus your custom ones. Full objects are returned, so filter by `id` to read a single template.


## OpenAPI

````yaml GET /voice/api/v1/template
openapi: 3.0.1
info:
  title: EkaScribe Protocol API (MedScribeAlliance v0.1)
  version: '0.1'
  description: >
    Session-based medical voice capture API implementing the MedScribeAlliance
    Protocol v0.1. Discover service capabilities, create a session, stream audio
    chunks, then end the session to trigger asynchronous transcription and
    structured-template extraction.
servers:
  - url: https://api.eka.care
    description: Production server
  - url: https://api.dev.eka.care
    description: Development server
security: []
paths:
  /voice/api/v1/template:
    get:
      tags:
        - templates
      summary: List Templates
      description: >
        List every template available to your workspace — Eka's default
        templates (e.g. `clinical_notes_template`, `transcript_template`) plus
        any custom templates you created. The full template object is returned
        for each entry, so this is also the read path for a single template:
        filter the response by `id`.
      responses:
        '200':
          description: Templates available to the workspace
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TemplatesListResponse'
              example:
                items:
                  - id: clinical_notes_template
                    title: Clinical Notes
                    desc: Standard clinical note
                    section_ids: []
                    default: true
                    is_favorite: false
                  - id: tpl_7d1a2b3c4d5e
                    title: Cardiology OPD Note
                    desc: Generate a cardiology outpatient note with...
                    section_ids: []
                    default: false
                    is_favorite: true
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - auth: []
components:
  schemas:
    TemplatesListResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Template'
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: Machine-readable error code.
              example: invalid_audio_format
            message:
              type: string
              description: Human-readable error message.
              example: Audio format 'audio/mp3' is not supported
            details:
              type: object
              additionalProperties: true
              description: Additional error context.
    Template:
      type: object
      properties:
        id:
          type: string
          description: >-
            Template ID — pass this in Create Session `templates` or Process
            Template.
        title:
          type: string
        desc:
          type: string
          description: The template instructions.
        section_ids:
          type: array
          items:
            type: string
        default:
          type: boolean
          description: True for Eka-provided templates available to every workspace.
        is_favorite:
          type: boolean
  securitySchemes:
    auth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer authentication header of the form `Bearer <token>`, where
        `<token>` is your auth token.

````