Send data out
Spreadsheets and documents
A Google Sheet that fills itself with one formula, a Google Doc per extraction, or your own XLSX template populated automatically.
Google Sheets
The fastest route from documents to something a finance team will actually use. One formula, and the sheet keeps itself current.
- Under Outbound, add a Google Sheets integration.
- Copy the generated formula.
- Paste it into any cell of your sheet.
=IMPORTDATA("https://parsli.co/api/parsers/{id}/feed?token={token}&format=csv")
Every extracted document appears as a row. New documents appear on their own — the sheet refreshes whenever Google Sheets recalculates, with no webhook, no script, and no manual export.
No Google authorisation is required. The formula reads a Data feed — a plain CSV URL. Nothing is granted access to your Drive.
Important: The token in that URL is the credential. Anyone with the formula can read every result from that parser. Share the sheet, not the formula, and do not paste it into a public document.
Because the feed is ordinary CSV over HTTP, anything that can read a URL can consume it — Excel's web query, a Python script, a BI tool. Google Sheets is just the easiest client.
When Sheets is the wrong choice
Very high volume. IMPORTDATA re-reads the whole feed each refresh, so a sheet backed by tens of thousands of documents gets slow. At that point use a Webhook into a database and point the BI tool at that.
Google Docs
Creates a formatted Google Doc for each extracted document, with fields, tables, and metadata laid out in readable sections.
- Under Outbound, add a Google Docs integration.
- Connect Google Drive.
- Optionally give a folder to file them in.
Useful when the output is meant to be read rather than analysed — summaries, reports, case notes. For anything you intend to filter or total, use Sheets.
Important: Parsli requests the drive.file scope, which grants access only to files it creates. It cannot read, modify, or delete anything else in your Drive.
Filled Spreadsheet → Drive
For when you have an XLSX template that must be filled in — a form, a return, an internal report with a fixed layout.
Rather than giving you rows to copy across, Parsli fills your actual template from the extracted data and uploads the completed file to your Drive.
- Under Outbound, add Filled Spreadsheet → Drive.
- Upload the template.
- Connect Drive.
Every processed document produces a filled copy.
This suits the case where the shape of the output is fixed by someone else — a regulator, a client, a system that only accepts one layout. If you just want the data, Sheets is simpler.
Choosing
| Google Sheets | Google Docs | Filled Spreadsheet | |
|---|---|---|---|
| Output | Rows in one sheet | One document each | One filled file each |
| Drive access | None | drive.file | drive.file |
| Good for | Analysis, totals, filtering | Reading | A layout you must match |
| Volume | Moderate | Any | Any |
Something here wrong or missing? Tell us — we treat it as a bug.