This is a tool for the private API of the Trade Republic online brokerage. This package and its authors are not affiliated with Trade Republic Bank GmbH.
pytrpp2 builds on the work of two projects:
pytr— the actively maintained Trade Republic API client that pytrpp2 forks. All core functionality (timeline download, document download, transaction export, price alarms, etc.) comes from pytr.pytrppby Martin Scharrer — an earlier extension of pytr that pioneered Portfolio Performance CSV export for Trade Republic data. pytrpp appears to be inactive, so pytrpp2 picks up that work: the PP-specific conversion logic (export_pp,build_classification,check_mappings) is ported and extended from pytrpp.
pytrpp2 is a fork of pytr and includes all of its original functionality. On top of that, pytrpp2 adds three subcommands specifically for Portfolio Performance users:
| Added subcommand | What it does |
|---|---|
export_pp |
Downloads your full TR timeline and converts it to Portfolio Performance-compatible CSV files (payments.csv, orders.csv). Handles all TR event types including the post-2025 API format. Optionally downloads PDF documents. |
build_classification |
Reads the raw events JSON from export_pp and generates a classification.json taxonomy (Asset Allocation: RISKY / CASH) ready to import into Portfolio Performance under Wertpapiere → Klassifizierungen. |
check_mappings |
Reads an events JSON and reports any TR event types that have no converter handler — useful after a Trade Republic API update to spot silent data loss before it happens. |
The CSV format produced by export_pp matches exactly what Portfolio Performance expects:
payments.csv→ Account Transactions (dividends, interest, coupons, bond repayments, transfers)orders.csv→ Portfolio Transactions (buy / sell / savings plan orders)
Requires Python 3.10 or newer.
pip install pytrpp2Downloads your Trade Republic timeline and converts it to files ready to import into Portfolio Performance.
# Export CSVs and event log into a directory:
pytrpp2 export_pp -n +49123456789 -p 1234 -D /path/to/output
# Also download PDF documents into a timestamped subfolder:
pytrpp2 export_pp -n +49123456789 -p 1234 -D /path/to/output -F /path/to/docs
# Incremental — only fetch events since the last run:
pytrpp2 export_pp -n +49123456789 -p 1234 -D /path/to/output --incrementalEach run with -D creates a timestamped subfolder (YYYY-MM-DD_HH-MM-SS) inside the given directory. Pass --incremental to automatically start from where the last run left off — pytrpp2 scans the directory for the most recent subfolder and fetches only events after that timestamp. If no previous run is found, all events are fetched.
If phone number or PIN is omitted, pytrpp2 will prompt for them or read them from ~/.pytr/credentials (first line: phone number, second line: PIN).
usage: pytrpp2 export_pp [-h] [-n PHONE_NO] [-p PIN] [--applogin]
[--waf-token WAF_TOKEN] [--store_credentials]
[-D DIR] [-E EVENTS_FILE] [-P PAYMENTS_FILE]
[-O ORDERS_FILE] [-F DOCS_DIR] [--workers WORKERS]
[--last_days DAYS] [--days_until DAYS]
Authentication:
-n, --phone_no PHONE_NO TradeRepublic phone number (international format)
-p, --pin PIN TradeRepublic PIN
--applogin Use app login instead of web login
--waf-token WAF_TOKEN Manually provide an aws-waf-token cookie value
--store_credentials Store credentials for next run
Output (use -D to set all at once, or specify individually):
-D, --dir DIR Main output directory. Sets default paths for
events.json, payments.csv, and orders.csv.
Does NOT trigger PDF download — use -F for that.
-E, --events-file FILE Write raw event data to this JSON file
-P, --payments-file FILE Write payments (dividends, interest, etc.) to this CSV
-O, --orders-file FILE Write orders (buy/sell) to this CSV
-F, --docs-dir DIR Download PDF documents into this directory.
A timestamped subfolder (YYYY-MM-DD_HH-MM-SS) is
created automatically on each run.
Download options:
--workers N Number of parallel download workers (default: 8)
Date range (both default to 0 = include everything):
--last_days DAYS Include only the last N days of data
--days_until DAYS Exclude the most recent N days (offset the end date)
--incremental Only fetch events after the last run (requires -D).
Scans -D for existing timestamped subfolders and uses
the most recent one as the start time.
| File | Contents | Portfolio Performance import |
|---|---|---|
payments.csv |
Dividends, interest, coupons, bond repayments, transfers | Account Transactions |
orders.csv |
Buy / sell / savings plan orders | Portfolio Transactions |
events.json |
Full raw event data from TR timeline | — (audit / debugging) |
DOCS_DIR/YYYY-MM-DD_HH-MM-SS/ |
PDF documents (contract notes, tax statements) | — |
After conversion, export_pp automatically runs a mapping gap check (see check_mappings below) and prints event counts.
Reads the events JSON from export_pp and generates a classification.json for Portfolio Performance's Klassifizierungen feature. It collects every security ISIN from your transaction history and assigns each one to a category based on an optional config file.
# Minimal — all ISINs default to RISKY:
pytrpp2 build_classification /path/to/events.json classification.json
# With explicit config:
pytrpp2 build_classification /path/to/events.json classification.json --config /path/to/classifications_config.jsonImport the result in Portfolio Performance under:
Wertpapiere → Klassifizierungen → [taxonomy] → ⋮ → Importieren
Copy pytr/classifications_config.example.json to ~/.pytr/classifications_config.json and edit it:
{
"classifications": {
"IE00B4L5Y983": "RISKY",
"IE00B3WJKG14": "CASH",
"DE0001030542": "CASH"
}
}Valid keys: RISKY (Risikobehafteter Portfolioteil) and CASH (Risikoarmer Anteil). ISINs not listed default to RISKY. After each run, any unconfigured ISINs are printed to the console.
If --config is not provided, pytrpp2 looks for ~/.pytr/classifications_config.json automatically.
Checks an events JSON for TR event types that have no handler in the converter. These would be silently dropped from payments.csv and orders.csv — typically caused by Trade Republic renaming or introducing event types after a platform update.
pytrpp2 check_mappings /path/to/events.jsonOutput:
- WARNING + table of unmapped types with counts (if any gaps exist)
- Intentionally ignored types (account events, notifications — expected)
- Registered handlers not seen in this export (old TR names / unused handlers)
export_pp runs this check automatically after every conversion, so you only need to call it manually to re-check an older events JSON.
Authentication works the same as in pytr. See pytr's README for details on web login, app login, and the credentials file.
See pytr's README for general setup, linting, and formatting instructions — the toolchain is identical (uv, ruff, mypy).
Clone and install this fork:
git clone https://github.com/JonathanWillnow/pytrpp2.git
cd pytrpp2
uv sync --group dev
uv run pytestA pre-commit hook runs the full test suite automatically before every commit.
For bugs or feature requests in the PP-specific functionality (export_pp, build_classification, check_mappings), open an issue in this repository. For issues with core Trade Republic API behaviour, do not forget to report them upstream in pytr.
This project is licensed under the MIT License. See the LICENSE file for details.