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

# List abstract templates

> Returns the tenant's abstract templates and the custom-field schema each accepts.



## OpenAPI

````yaml /openapi.json get /abstract-templates
openapi: 3.1.0
info:
  title: TitleTrackr Developer API
  version: 1.0.0
  description: Push orders and documents into TitleTrackr.
servers:
  - url: https://api.titletrackr.com/v1
security:
  - bearerAuth: []
paths:
  /abstract-templates:
    get:
      summary: List abstract templates
      description: >-
        Returns the tenant's abstract templates and the custom-field schema each
        accepts.
      responses:
        '200':
          description: Templates
          content:
            application/json:
              schema:
                type: object
                properties:
                  templates:
                    type: array
                    items:
                      $ref: '#/components/schemas/AbstractTemplate'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
components:
  schemas:
    AbstractTemplate:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        default:
          type: boolean
        custom_fields:
          type: array
          items:
            $ref: '#/components/schemas/Field'
    Field:
      type: object
      properties:
        key:
          type: string
        label:
          type: string
        type:
          type: string
        required:
          type: boolean
        options:
          type: array
          items:
            type: string
          nullable: true
  responses:
    Unauthorized:
      description: Missing or invalid API key.
    Forbidden:
      description: Key not authorized for the Developer API.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````