Skip to main content

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.

The Developer API uses bearer-token authentication. Your API key is a TitleTrackr personal access token scoped with the api:v1 ability and bound to a single tenant. You generate, rotate, and revoke keys yourself from the Developer Portal → Tokens page inside the TitleTrackr app — see Requesting Access.

Sending your key

Include your key in the Authorization header on every request:
curl https://api.titletrackr.com/api/v1/order-fields \
  -H "Authorization: Bearer ttr_live_xxxxxxxxxxxxxxxxxxxx" \
  -H "Accept: application/json"
Treat your API key like a password. It grants full read/write access to your workspace’s orders and File Vault. Never embed it in client-side code.

Tenant scoping

Your key already carries the tenant it belongs to — you do not need to send a tenant id with each request. Every order created and document uploaded is automatically associated with your workspace.

Errors

StatusMeaning
401 UnauthorizedMissing or invalid API key.
403 ForbiddenThe key is not authorized for the Developer API, or no tenant is associated with it.
422 Unprocessable EntityValidation failed. The errors object lists the offending fields.
429 Too Many RequestsRate limit exceeded. Retry after the Retry-After header.

Rate limits

CategoryLimit
Writes (create order, upload)30 requests / minute
Reads (list fields, list folders)120 requests / minute
Limits are per tenant. Exceeding a limit returns 429 with a Retry-After header indicating how long to wait.