Export
Endpoint for exporting transactions as a CSV file.
Export CSV
GET /api/v2/export/csvReturns a CSV file with all transactions for the requested date range. Both parameters are required.
Query Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
start | YYYY-MM-DD | Yes | Export from this date (inclusive) |
end | YYYY-MM-DD | Yes | Export to this date (inclusive) |
Response 200 OK:
Content-Type: text/csv; charset=utf-8
Content-Disposition: attachment; filename="expenses_{start}_{end}.csv"Example filename: expenses_2026-04-01_2026-04-30.csv
CSV columns:
| Column | Type | Description |
|---|---|---|
id | UUID | Transaction ID |
date | YYYY-MM-DD | Transaction date |
establishment | string | Merchant name |
description | string | Description |
amount | decimal | Amount in BRL |
category | string | Category name |
entry_type | string | image, text, or pdf |
confidence | decimal | AI extraction confidence (0.00–1.00) |
created_at | ISO 8601 | When the record was created |
Example row:
id,date,establishment,description,amount,category,entry_type,confidence,created_at
a1b2c3d4-...,2026-04-13,Supermercado Extra,Weekly groceries,42.50,Alimentação,image,0.97,2026-04-13T10:00:00ZLast updated on