Skip to main content
The Abstracts API lets you create a title abstract in TitleTrackr by pushing a few custom fields, then attaching the documents — either in the same request or later, once they’re ready. An abstract belongs to a template. The template defines which custom fields the abstract accepts. You pick the template when you create the abstract.

Endpoints

Typical flow

A common integration is a one-click push from another system: your software creates an abstract in TitleTrackr with the right custom fields filled in, and the documents are uploaded later, when they’re ready.
1

Discover your templates

Call GET /abstract-templates once to learn your template ids and the custom fields each one accepts.
2

Create the abstract

POST /abstracts with a template_id and any custom field values. No documents are required.
3

Add documents when ready

Attach documents in the same POST /abstracts call by including files[], or have a user upload them in the TitleTrackr app afterward.
Documents are optional on create. Send the fields alone to create the abstract now, or include files[] to create it with documents attached in a single request.
Abstract ids returned by the API are obfuscated strings (not sequential integers). Use them as opaque identifiers.