CLI client for the Yuki bookkeeping SOAP API
Project description
yuki
CLI client for the Yuki bookkeeping SOAP API.
Yuki is a Dutch bookkeeping SaaS used for accounting, VAT returns, and document archiving. This CLI lets you query your administration, find missing invoices, and upload documents — from the terminal or as part of automated workflows.
Note: This project is not affiliated with or endorsed by Yuki Software.
Install
cargo install yuki-cli
Or via pip:
pip install yuki-cli
Both install the yuki binary.
Setup
- Get a Yuki API key from your Yuki portal under Settings > API keys.
- Run
yuki initand paste your key when prompted. The CLI discovers your administrations and writes the config to~/.config/yuki/config.toml.
yuki init
Non-interactive (for scripting):
yuki init --api-key <key> --default-admin <name>
To rotate your API key later:
yuki init --api-key <new-key>
Quick start: find missing invoices
The main workflow is finding bank transactions that don't have a matching invoice in Yuki:
# Show bank debits without matching invoices for Q1 2025
yuki check unmatched --period 2025-Q1
This cross-references bank transactions against outstanding creditor items, booked archive documents, and known counterparty names. The output shows unmatched transactions with their date, amount, counterparty, and description.
For each unmatched item, you can check if the invoice is already in the archive, and upload it if not:
# Check if an invoice already exists
yuki documents exists --amount 7.28 --date 2025-03
# Upload an invoice (Yuki auto-sorts it)
yuki upload file invoice.pdf
# Or upload to a specific folder with metadata
yuki upload file invoice.pdf --folder inkoop --amount 7.28 --remarks "Hetzner hosting"
Commands
Querying
yuki vat returns # List all VAT return periods
yuki vat returns --year 2025 # Filter by year
yuki vat codes # List active VAT codes
yuki invoices list --invoice-type purchase # Outstanding purchase invoices
yuki invoices show <transaction-id> # Transaction details
yuki invoices document <transaction-id> # Document linked to a transaction
yuki contacts search "Hetzner" # Search contacts
yuki contacts list # List all suppliers and customers
yuki accounts balance --account 11001 --period 2025-Q1
yuki accounts transactions --account 11001 --period 2025-Q1
yuki accounts scheme # Chart of accounts (GL scheme)
yuki accounts revenue --period 2025-Q1 # Net revenue for a period
yuki accounts start-balance --year 2025 # Opening balances per GL account
yuki projects list # List all projects
yuki projects balance <code> --period 2025 # Project balance
yuki documents list --folder inkoop # List documents in a folder
yuki documents search "factuur" # Full-text search
yuki documents exists --amount 7.28 --date 2025-03 # Check if invoice exists
yuki admin list # List administrations
yuki admin switch <name> # Change default administration
Gap analysis
yuki check btw 2025-Q4 # VAT period check: outstanding items
yuki check unmatched --period 2026-Q1 # Bank debits without matching invoices
yuki check outstanding <reference> # Check if a reference is still outstanding
Uploading
yuki upload file invoice.pdf # Upload to uitzoeken (auto-sorted)
yuki upload file invoice.pdf --folder inkoop # Upload to specific folder
yuki upload file invoice.pdf --amount 114.27 \
--category 45100 --payment-method 4 \
--remarks "Hosting" # Upload with metadata
yuki upload categories # List cost category IDs
yuki upload payment-methods # List payment method IDs
Global flags
| Flag | Description |
|---|---|
--admin <name> |
Override default administration |
--format table|json |
Output format (auto-detects TTY) |
--quiet |
Suppress informational output |
Periods
The --period flag accepts:
2025— full year2025-Q1— quarter2025-03— single month
Agent use
When stdout is not a TTY (piped or called by an agent), output defaults to JSON. Errors are also structured JSON on stderr. Exit codes: 0 success, 1 general error, 2 auth error, 3 not found, 4 rate limited.
The documents exists command exits with code 3 when no matching document is found, making it easy to use in scripts and agent workflows.
Config
~/.config/yuki/config.toml:
api_key = "your-api-key"
default_admin = "company_name"
# Skip these counterparties in `check unmatched` (case-insensitive substring match)
unmatched_ignore = [
"Belastingdienst",
"ING bankkosten",
]
[administrations.company_name]
domain_id = "domain-uuid"
admin_id = "admin-uuid"
Development
make check # Run clippy + fmt check + tests
make build # Debug build
make release # Release build
make fmt # Format code
make install # Install to ~/.cargo/bin/
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yuki_cli-0.1.5.tar.gz.
File metadata
- Download URL: yuki_cli-0.1.5.tar.gz
- Upload date:
- Size: 57.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed3057c3c625a0db2e8a9224e09f13d5f1dc3e90730e50b9916800984bb1adb6
|
|
| MD5 |
84ceb9ca4e8ff0859c9a005ff72db600
|
|
| BLAKE2b-256 |
0b367d14b40efe6cb440cc5119d10f5f96755b2611c21db23cde55de92977384
|
File details
Details for the file yuki_cli-0.1.5-py3-none-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: yuki_cli-0.1.5-py3-none-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: Python 3, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
394e051676388af19ea7a8f4c890de5f7a231b35d9010e293cff32431cf2be34
|
|
| MD5 |
4e7a7057aa1c59886b8c46b0dd5c8887
|
|
| BLAKE2b-256 |
a31a3ef87460afb8125ce042d35f1f25fe575355b7158369f3d0efd7debf235d
|
File details
Details for the file yuki_cli-0.1.5-py3-none-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: yuki_cli-0.1.5-py3-none-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.5 MB
- Tags: Python 3, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5795070630484705a98db77d5aa8a3c0def96354389ea7c5cd1e9b108fff8f9
|
|
| MD5 |
304f3880d2ac87b7383c38122cdd0890
|
|
| BLAKE2b-256 |
a5a264a15f84e8d37a306a5462db3de0c256fcfa5a3bd849234ca3bc5d4f24f0
|
File details
Details for the file yuki_cli-0.1.5-py3-none-macosx_11_0_arm64.whl.
File metadata
- Download URL: yuki_cli-0.1.5-py3-none-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.5 MB
- Tags: Python 3, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6949d94118a6002af907a9597c9c60d5ac8f5d5660546620563c9c988fd3e499
|
|
| MD5 |
f9ce38d63056fed1b029a2b7ec4f492a
|
|
| BLAKE2b-256 |
83531e4b50e4c5488ad7153bfb2f2afe6c294c279e1a5cc98839ca97ad47c401
|
File details
Details for the file yuki_cli-0.1.5-py3-none-macosx_10_12_x86_64.whl.
File metadata
- Download URL: yuki_cli-0.1.5-py3-none-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: Python 3, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f84713ff1f0a8f2fe7764c3580794bb569bb6f04e838725652bed727ac35fa0
|
|
| MD5 |
02c476c43687806cfeb91d47a1916589
|
|
| BLAKE2b-256 |
16f61621e88b5406cfe78d32bb6944cc7ecca091a837cd35935672dd543d20f9
|