Skip to main content
The Centsless export endpoint produces a compliance-ready CSV for regulatory submissions and audit evidence. The standard export includes 53 fields covering every stage of the transaction lifecycle — from the original amounts and rounding calculation through compliance status, fraud score, and audit hash. You can filter exports by date range, payment method, and compliance status to target exactly the records a regulator or auditor needs.

Export modes

The export_mode field controls how many fields are included in the output:
ModeFieldsBest for
standard53 fieldsRegulatory submissions and compliance reporting
fullAll fieldsInternal audits where complete raw data is needed
summaryKey fields onlyQuick operational reviews

Filter options

You can narrow the export using any combination of these fields:
FieldTypeDescription
start_datedate-timeStart of the date range (ISO 8601)
end_datedate-timeEnd of the date range (ISO 8601)
payment_methodstringFilter by payment method (e.g., cash)
compliance_statusstringFilter by compliance status (PASS, WARN, or FAIL)

Example export request

curl -X POST https://api.centsless.org/api/v1/export \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
    "export_mode": "standard",
    "start_date": "2026-01-01T00:00:00Z",
    "end_date": "2026-01-31T23:59:59Z"
  }'
The response is a CSV file download with Content-Type: text/csv. Save the response body directly to a .csv file for use in your reporting tools or submission package.
For regulatory submissions, use standard mode — the 53-field output meets the data requirements of enacted state legislation. For internal audits where you want every raw field the engine stores, use full mode.
Combine the CSV export with the hash chain verification endpoint (GET /admin/verify-hash-chain) to give regulators tamper-proof evidence. The verification response confirms that every record in your export is part of an unbroken cryptographic chain, which demonstrates the audit trail has not been altered.