Skip to main content

Balances

Your balance shows how much money is ready to be paid out and how much is still pending. Use it to power finance dashboards, decide when to schedule a payout, and understand the current state of funds collected through Inttegro.

The response is a point-in-time snapshot rather than a live transaction list. Check includes_transactions_before to see when the snapshot ends, and use Balance transactions when you need the individual payments and refunds behind it.

Operations

The balance object

Balances are grouped by currency. Every amount uses that currency's smallest unit, such as pesewas for GHS.

available is the amount you can use for a payout. pending contains funds that have been collected but are not available yet. The snapshot also reports its reserved and refund amounts and the cutoff through which balance activity has been included.

Properties

  • ghsobjectLatest GHS snapshot. Amounts are expressed in pesewas.Click or tap to expand
    • Name
      available
      Type
      object
      View available attributesClick or tap to expand
      Funds classified as available at the snapshot cutoff.
      • Name
        amount
        Type
        integer
        Description
        Available amount in minor units (pesewas for GHS).
    • Name
      includes_transactions_before
      Type
      timestamp
      Description
      Snapshot cutoff. Transactions created before this timestamp are represented in the amounts; transactions at or after it are not.
    • Name
      pending
      Type
      object
      View pending attributesClick or tap to expand
      Funds recognized by the snapshot but not yet available for payout.
      • Name
        amount
        Type
        integer
        Description
        Pending amount in pesewas.
    • Name
      refund
      Type
      object
      View refund attributesClick or tap to expand
      Funds assigned to refund activity at the snapshot cutoff.
      • Name
        amount
        Type
        integer
        Description
        Current refund statement amount in pesewas.
    • Name
      reserved
      Type
      object
      View reserved attributesClick or tap to expand
      Funds held back from payout at the snapshot cutoff.
      • Name
        amount
        Type
        integer
        Description
        Current reserved statement amount in pesewas.
POST/balances

Retrieve your balance

Retrieve your latest GHS balance snapshot. Read available.amount to see how much can be paid out, and keep includes_transactions_before with the result when reconciling it against balance transactions.

A new account with no completed balance activity returns a zero-valued GHS snapshot.

Available through MCP

AI clients can use get_balances for this operation. MCP read tools return minimized business data and do not change Inttegro state.

Request body

Send an empty JSON object. No balance ID or other request attributes are needed.

Request

POST/balances
curl https://api.inttegro.com/balances \
-H "Authorization: Bearer $INTTEGRO_API_KEY" \
-H "Content-Type: application/json" \
-d '{}'

Response

SDK versionv8.2.0
BalanceResponse {
balances: {},
}