Skip to content

Getting Started

RiseUp is an Israeli personal finance app with no public API. This CLI was built by reverse-engineering the internal API that powers the RiseUp web app, so you can access your own financial data programmatically — from the terminal or through AI agents like Claude Code. All requests go directly from your machine to RiseUp's servers using your own session cookies. Nothing is proxied, stored, or sent anywhere else.

Requirements

RequirementVersion
Node.js22+
Google ChromeLatest

Installation

bash
npm install -g riseup-cli

Or install from GitHub:

bash
npm install -g github:arsolutioner/riseup-cli

Then install the browser dependency:

bash
npx playwright install chromium

TIP

Both riseup and riseup-cli work as commands.

Authentication

RiseUp uses Google OAuth. The CLI opens a real Chrome window so you can sign in manually — no passwords are stored or transmitted by this tool.

bash
riseup login     # Opens Chrome, sign in, session saved
riseup status    # Check login status and account info
riseup logout    # Clear session

TIP

Sessions are stored at ~/.config/riseup-cli/session.json with chmod 0600. The browser uses a persistent profile with automation detection disabled so Google OAuth works normally.

Global Options

FlagDescription
--jsonOutput as JSON (for scripting and piping)
--no-colorDisable colored output

Month Format

Commands that accept a [month] argument support:

FormatExampleDescription
currentriseup spending currentCurrent budget month (default)
prevriseup spending prevPrevious month
-Nriseup spending -2N months back
YYYY-MMriseup spending 2026-01Specific month

Disclaimer

This is an unofficial tool and is not affiliated with or endorsed by RiseUp. Use at your own risk. The internal API may change at any time.

Released under the MIT License.