Account balance

Read your collection account balance — the wallet your collections settle to.

GET /partner/balance

cURL

curl "https://<your-operator>/api/bridgepay/v1/partner/balance" -H "Authorization: Bearer at_..."

Node.js

const r = await fetch(`${base}/partner/balance`,
  { headers: { Authorization: `Bearer ${token}` } });
const { data } = await r.json();  // { balance, currency, account }

Python

r = requests.get(f"{BASE}/partner/balance",
    headers={"Authorization": f"Bearer {token}"})
data = r.json()["data"]
# -> { "status":"ok", "data":{ "balance":1877.05, "currency":"KES", "account":"555550" } }
Was this page helpful?