CLI Scripting & Piping
Use the Bkper CLI as a scripting tool — pipe JSON between commands for batch creates and updates, output CSV for data pipelines and AI agents, and chain operations to migrate, transform, or sync book data without writing code.
The Bkper CLI is designed for scripting. Every command supports multiple output formats, and selected write commands accept piped JSON input — making it easy to build data pipelines, batch operations, and automated workflows.
Output formats
All commands support three output formats via the --format global flag:
| Format | Flag | Best for |
|---|---|---|
| Table | --format table (default) | Human reading in the terminal |
| JSON | --format json | Programmatic access, single-item detail |
| CSV | --format csv | Spreadsheets, AI agents, data pipelines |
# Table output (default)bkper account list -b abc123
# JSON outputbkper account list -b abc123 --format json
# CSV output -- raw data, no truncation, RFC 4180bkper account list -b abc123 --format csvCSV output details:
- RFC 4180 compliant — proper quoting, CRLF line endings, no truncation
- All metadata included — IDs, properties, hidden properties, URLs, and timestamps
- Raw values — dates in ISO format, numbers unformatted
Query semantics quick reference
Use these rules in scripts to avoid ambiguous or empty results:
on:supports year, month, and day (on:2025,on:2025-01,on:2025-01-31).after:is inclusive andbefore:is exclusive.- A full-year range uses next-year boundary:
after:2025-01-01 before:2026-01-01
# Full year with on:bkper transaction list -b $BOOK_ID -q "on:2025" --format csv
# Same full year with explicit boundariesbkper transaction list -b $BOOK_ID -q "after:2025-01-01 before:2026-01-01" --format csvBatch operations
Write commands (account create, transaction create, transaction update) accept JSON piped via stdin. The input format follows the Bkper API Types — a single JSON object or an array of objects.
Groups are created explicitly with bkper group create --name and optional --parent, so hierarchy stays deterministic.
Creating in batch
# Create transactions from JSONecho '[{ "date": "2025-01-15", "amount": "100.50", "creditAccount": {"name": "Bank Account"}, "debitAccount": {"name": "Office Supplies"}, "description": "Printer paper", "properties": {"invoice": "INV-001"}}]' | bkper transaction create -b abc123
# Create accountsecho '[{"name":"Cash","type":"ASSET"},{"name":"Revenue","type":"INCOMING"}]' | \ bkper account create -b abc123
# Create a group explicitlybkper group create -b abc123 --name "Fixed Costs" --hidden
# Pipe from any script that outputs JSONpython export_bank.py | bkper transaction create -b abc123Batch results are output as a flat JSON array:
bkper account create -b abc123 < accounts.json# [{"id":"acc-abc","name":"Cash",...}, {"id":"acc-def","name":"Revenue",...}]Adding properties via CLI flag
The --property flag can add or override properties from the stdin payload:
echo '[{"name":"Cash","type":"ASSET"}]' | \ bkper account create -b abc123 -p "region=LATAM"Piping between commands
All JSON output is designed to feed directly into other commands. This is the most powerful pattern — combining commands into pipelines:
Copy data between books
# Copy all accounts from one book to anotherbkper account list -b $BOOK_A --format json | bkper account create -b $BOOK_B
# Copy transactions matching a querybkper transaction list -b $BOOK_A -q "after:2025-01-01" --format json | \ bkper transaction create -b $BOOK_BRecreate groups explicitly with bkper group create --name ... --parent ... before copying accounts that reference them.
Clone a full chart of accounts
# Recreate the group hierarchy explicitlybkper group create -b $DEST --name "Assets"bkper group create -b $DEST --name "Current Assets" --parent "Assets"
# Then copy accounts and transactionsbkper account list -b $SOURCE --format json | bkper account create -b $DESTbkper transaction list -b $SOURCE -q "after:2025-01-01" --format json | \ bkper transaction create -b $DESTBatch updates with jq
Use jq to transform data between commands:
# List transactions, modify descriptions, pipe back to updatebkper transaction list -b $BOOK -q "after:2025-01-01" --format json | \ jq '[.[] | .description = "Updated: " + .description]' | \ bkper transaction update -b $BOOK
# Add a property to all matching transactionsbkper transaction list -b $BOOK -q "account:Expenses" --format json | \ bkper transaction update -b $BOOK -p "reviewed=true"
# Batch update checked transactionsbkper transaction list -b $BOOK -q "is:checked after:2025-01-01" --format json | \ bkper transaction update -b $BOOK --update-checked -p "migrated=true"Shell script examples
Daily export
#!/bin/bash# Export yesterday's transactions to CSVDATE=$(date -d "yesterday" +%Y-%m-%d)bkper transaction list -b $BOOK_ID \ -q "on:$DATE" \ --format csv > "export-$DATE.csv"Bulk categorization
#!/bin/bash# Add a property to all uncategorized transactionsbkper transaction list -b $BOOK_ID \ -q "account:Uncategorized" \ --format json | \ bkper transaction update -b $BOOK_ID -p "needs_review=true"Combining with other tools
The CLI works with standard Unix tools:
# Count transactions matching a querybkper transaction list -b $BOOK_ID -q "after:2025-01-01" --format json | jq 'length'
# Extract specific fields with jqbkper account list -b $BOOK_ID --format json | \ jq '[.[] | {name, type}]'
# Sort by amountbkper transaction list -b $BOOK_ID -q "after:1900-01-01" --format json | \ jq 'sort_by(.amount | tonumber) | reverse'Full CLI reference
For the complete command reference including all options, see the bkper-cli app page or run bkper --help.