CLI

BillerAPI CLI

Inspect resources, forward signed webhooks to localhost, and fire deterministic sandbox events without writing throwaway scripts.

Release status

The account-free demo is hidden until an exact npm registry receipt marks billerapi-cli@1.0.1 available.

Local webhook loop

Terminal
npm install -g billerapi-cli
billerapi login
billerapi doctor
billerapi samples create node-express
billerapi listen --forward-to http://localhost:3000/webhook

# In another terminal
billerapi trigger bill.created --link_id=lnk_1 --amount=4200

The listener reconnects with exponential backoff and falls back to delivery polling after repeated stream failures. Forwarded requests use the production-compatible signature scheme.

Useful commands

billerapi bills list

Query bill resources

billerapi billers list

Explore the catalog

billerapi links list

Inspect account links

billerapi webhooks deliveries

Debug delivery history

billerapi events tail

Follow the activity feed

billerapi env sandbox

Switch the active profile mode

Production forwarding is deliberately gated

A production profile requires --prod and confirmation before mirroring events to a laptop because payloads may contain customer data.
Was this page helpful?