Skip to main content

Output Formats

Pick the format that fits your workflow.

Table of Contents

Quick Comparison

FormatBest ForHuman-ReadableApp-FriendlyTypical Next Step
CSVExcel, Google Sheets, quick filteringYesMediumOpen in spreadsheet
JSONAPIs, scripts, backend systemsYesHighParse in code
XLSXFinance teams using Excel featuresYesMediumPivot tables and formulas
OFXAccounting and personal finance softwareLimitedHigh (for finance tools)Import into bookkeeping app

Fields Included

All conversion formats represent these transaction-level fields:

  • Date
  • Transaction Type
  • Description
  • NFC (0 or 1)
  • Amount
  • Balance

Model-level metadata may also be present or used internally (account holder, account number, IBAN, statement date range).

tip

For automation, JSON is usually the easiest format to process reliably.

Sample Outputs

CSV snippet

Tarih;Hareket tipi;Açıklama;NFC;İşlem Tutarı;Bakiye
02.03.2026;Diğer;Diğer Banka Debit Karttan ENPARA Debit Karta Para Transferi;0;14.954,09;15.048,78
03.03.2026;Diğer;000000003620060-ODEAL//YASEMIN YILDI MANISA TR;1;-145,00;14.903,78

JSON snippet

[
{
"Tarih": "28.03.2026",
"Hareket tipi": "Diğer",
"Açıklama": "000000004228140-DED COFFEE IZMIR TR",
"NFC": 0,
"İşlem Tutarı": -215,
"Bakiye": 2142.27
}
]

XLSX

XLSX contains the same columns as CSV, with formatting suitable for Excel.

OFX

OFX exports transactions in a banking interchange format with fields such as TRNTYPE, DTPOSTED, TRNAMT, FITID, NAME, and MEMO.

<STMTTRN>
<TRNTYPE>CREDIT</TRNTYPE>
<DTPOSTED>20260302000000</DTPOSTED>
<TRNAMT>14954.09</TRNAMT>
<FITID>8f6f64b78db7e905e9fa806d</FITID>
<NAME>Diğer</NAME>
<MEMO>Diğer Banka Debit Karttan ENPARA Debit Karta Para Transferi</MEMO>
</STMTTRN>

When to Use Which

  • Choose CSV for quick manual checks.
  • Choose JSON for service-to-service integration.
  • Choose XLSX when you need rich spreadsheet formatting.
  • Choose OFX when your accounting tool supports direct OFX import.

Next Steps