> ## 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.

# Create an abstract

> Create a title abstract, optionally attaching document files in the same request.



## OpenAPI

````yaml /openapi.json post /abstracts
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:
  /abstracts:
    post:
      summary: Create an abstract
      description: >-
        Create a title abstract, optionally attaching document files in the same
        request.
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                template_id:
                  type: integer
                  description: >-
                    Template to create the abstract under. Omit to use the
                    default template.
                custom_fields:
                  type: string
                  description: JSON-encoded map of custom field key to value.
                address:
                  type: string
                city:
                  type: string
                county:
                  type: string
                state:
                  type: string
                tax_map:
                  type: string
                files:
                  type: array
                  description: Optional document files to attach.
                  items:
                    type: string
                    format: binary
      responses:
        '201':
          description: Abstract created
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Abstract'
                  errors:
                    type: array
                    description: >-
                      Per-file failures. Empty when every file succeeded or none
                      were sent.
                    items:
                      type: object
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '422':
          $ref: '#/components/responses/ValidationError'
components:
  schemas:
    Abstract:
      type: object
      properties:
        id:
          type: string
        template_id:
          type: integer
          nullable: true
        status:
          type: string
          nullable: true
        address:
          type: string
          nullable: true
        city:
          type: string
          nullable: true
        county:
          type: string
          nullable: true
        state:
          type: string
          nullable: true
        tax_map:
          type: string
          nullable: true
        custom_fields:
          type: object
          additionalProperties: true
        files:
          type: array
          items:
            $ref: '#/components/schemas/FileVaultFile'
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    FileVaultFile:
      type: object
      properties:
        id:
          type: integer
        filename:
          type: string
        file_type:
          type: string
        mime_type:
          type: string
        page_count:
          type: integer
          nullable: true
        file_size:
          type: integer
        file_size_human:
          type: string
        folder_id:
          type: integer
          nullable: true
        is_processing:
          type: boolean
        download_url:
          type: string
          description: >-
            Token-authenticated download endpoint. Call it with your API key; it
            redirects to a short-lived pre-signed URL you can follow in a
            browser or with curl -L.
        created_at:
          type: string
          format: date-time
  responses:
    Unauthorized:
      description: Missing or invalid API key.
    Forbidden:
      description: Key not authorized for the Developer API.
    ValidationError:
      description: Validation failed.
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              errors:
                type: object
                additionalProperties:
                  type: array
                  items:
                    type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````