Exporting Data¶
CalcBridge allows you to export workbook data in multiple formats with optional cryptographic signing for audit trail compliance.
Export Formats¶
| Format | Best For |
|---|---|
| XLSX | Full workbook with formulas and provenance |
| CSV | Data import into other tools |
| Reports and presentations | |
| JSON | API integrations |
Creating an Export¶
Via UI¶
- Open a workbook
- Click Export in the toolbar
- Select the desired format
- Configure options (sheets, provenance, password)
- Click Start Export
- Download when complete
Via API¶
curl -X POST "https://api.calcbridge.io/api/v1/exports" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"workbook_id": "your-workbook-id",
"format": "xlsx",
"include_provenance": true
}'
Export Options¶
| Option | XLSX | CSV | JSON | |
|---|---|---|---|---|
| Select specific sheets | Yes | Yes | Yes | Yes |
| Include formulas | Yes | No | No | No |
| Provenance signing | Yes | No | No | No |
| Password protection | Yes | No | Yes | No |
| PII redaction | Yes | Yes | Yes | Yes |
Provenance Signing¶
When enabled for XLSX exports, provenance signing:
- Computes a cryptographic hash of every cell
- Signs the hash with HMAC-SHA256
- Embeds a manifest in the file
- Enables downstream verification
Why Use Provenance?
Provenance signing creates a tamper-evident record. Anyone receiving the file can verify that the data has not been modified since export.
Verifying an Export¶
To verify an exported file's integrity:
- Go to Exports in the main menu
- Find the export job
- Click Verify to confirm integrity
File Expiration¶
Export files expire after 24 hours by default. Download promptly or re-export when needed.
Related Documentation¶
- Exports & Provenance - Technical documentation
- Exports API - API reference