Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.fact0.io/llms.txt

Use this file to discover all available pages before exploring further.

Python installation

1

Create an account

Sign up at app.ledgerflow.io and complete onboarding.
2

Get your API key

Dashboard → Settings → API Keys → New key. Choose write scope. Copy the key — shown once.
export LEDGERFLOW_API_KEY="alk_live_..."
3

Install

pip install ledgerflow
Requires Python 3.10+.
4

Verify

python -c "import ledgerflow; print(ledgerflow.__version__)"
Store API keys in a secrets manager. Raw keys are shown only once at creation.
The SDK defaults to https://api.ledgerflow.io. Override with LEDGERFLOW_BASE_URL only if directed by LedgerFlow support. Continue to the Quickstart.

Legacy package name

auditlog-sdk remains available as a compatibility shim:
pip install auditlog-sdk  # re-exports ledgerflow.audit.Client as auditlog.Client