Flutterwave · Schema

Flutterwave Wallet Balance

A Flutterwave currency wallet balance for a single ISO 4217 currency.

PaymentsPayoutsMobile MoneyCardsAfricaFintechRemittanceVirtual AccountsChargebacksMulti-Currency

Properties

Name Type Description
currency string ISO 4217 currency code.
available_balance number Funds available for payouts and refunds.
ledger_balance number Ledger balance including holds and reservations.
pending_balance number Pending balance not yet cleared for use.
View JSON Schema on GitHub

JSON Schema

flutterwave-wallet-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flutterwave/main/json-schema/flutterwave-wallet-schema.json",
  "title": "Flutterwave Wallet Balance",
  "description": "A Flutterwave currency wallet balance for a single ISO 4217 currency.",
  "type": "object",
  "required": ["currency", "available_balance"],
  "properties": {
    "currency": { "type": "string", "description": "ISO 4217 currency code." },
    "available_balance": { "type": "number", "description": "Funds available for payouts and refunds." },
    "ledger_balance": { "type": "number", "description": "Ledger balance including holds and reservations." },
    "pending_balance": { "type": "number", "description": "Pending balance not yet cleared for use." }
  }
}