NetConnect API
Wallet & Top-ups

Get Wallet Balance

Return available, held, and total balance for the API key owner.

Endpoint

GET /api/v1/wallet-balance

Response

Returns wallet balance information for the authenticated API key owner.

{
  "success": true,
  "data": {
    "availableBalance": 0,
    "currency": "GHS",
    "heldBalance": 0,
    "lastUpdated": 1769109065157,
    "totalBalance": 0,
    "userProfileId": "user_profile_abc123"
  }
}

Response fields

FieldTypeNotes
userProfileIduserProfiles idOwner of the wallet
availableBalancenumberFunds immediately spendable (GHS)
heldBalancenumberFunds reserved for pending orders (GHS)
totalBalancenumberSum of available and held (GHS)
currencystringAlways GHS (Ghana Cedis)
lastUpdatednumberUnix epoch timestamp in milliseconds

Sample request

curl -X GET "https://api.netconnectgh.online/api/v1/wallet-balance" \
  -H "X-API-KEY: netconnect_live_your_secret_here" \
  -H "Content-Type: application/json"

On this page