v1

latestOpenAPI 3.0.32026-08-06111223.1 KB
Samples

Get Sample Abstracts

Returns the 3 most recent title abstracts for the tenant. Used by Zapier for trigger testing and sample data.

get/api/zapier/samples/abstracts

Response

List of sample abstracts

idstring

Obfuscated abstract ID

namestring

Abstract name/title

addressstring

Property street address

citystring

Property city

statestring

Property state (2-letter code)

countystring

Property county

tax_mapstring nullable

Tax map/parcel number

pagesinteger nullable

Number of pages in the abstract

wordsinteger nullable

Word count of the abstract

project_idstring nullable

Obfuscated ID of the associated project

linkstring uri

Direct link to view the abstract in TitleTrackr

project_linkstring uri nullable

Direct link to view the associated project

Example response

[
  {
    "id": "def456uvw",
    "name": "123 Main Street Title Abstract",
    "address": "123 Main Street",
    "city": "Springfield",
    "state": "IL",
    "county": "Sangamon",
    "tax_map": "12-34-567-890",
    "pages": 42,
    "words": 15000,
    "project_id": "ghi789rst",
    "link": "https://app.titletrackr.com/abstracts/def456uvw",
    "project_link": "https://app.titletrackr.com/projects/ghi789rst"
  }
]