Skip to main content
Search receipts using full-text search and faceted filters.

Request Body

FieldTypeDescription
qstringFull-text search across payload content
receipt_typestringFilter by type name
statusstringactive | revoked | superseded | redacted
issuer_idUUIDFilter by issuer
from_dateRFC3339Start of date range
to_dateRFC3339End of date range
index_keystringSearch by indexed payload field name
index_valuestringValue to match for index_key
limitintegerMax results (1–100, default 20)
offsetintegerPagination offset
curl -X POST https://api.truthlocks.com/v1/receipts/search \
  -H "X-API-Key: tl_live_..." \
  -d '{
    "q": "stripe",
    "receipt_type": "payment_receipt",
    "from_date": "2026-01-01T00:00:00Z"
  }'