VendoVendo Docs
ReferenceCLI

vendo whoami

Show the email, tenant, and credit balance of the logged-in CLI account.

Synopsis

vendo whoami

Prints the email, tenant id, issuance time, API base URL, and current credit balance for the locally stored CLI credential. Useful before running vendo dev or vendo ssh to confirm which tenant you're acting against.

Flags

This command takes no flags besides --help / -h.

Output

Email:    [email protected]
Tenant:   t_abc
Issued:   2026-05-20T12:00:00Z
API base: https://vendo.run
Balance:  $12.50

The balance line is best-effort. If the call to GET /api/cli/balance fails, you'll see:

Balance:  (unavailable: <reason>)

Email: and Issued: fall back to (unknown email) and (unknown) respectively if the corresponding fields are missing from ~/.vendo/config.json.

When there is no local credential:

Not logged in. Run `vendo login`.

Exits with code 1 in that case.

On this page