Before transferring balance

Fetch balance of source currency

curl --location 'https://sandbox-api.transfi.com/v3/balance?limit=5&page=1&currency=USDC' \
--header 'mid: SAH1N3_NA_NA' \
--header 'Authorization: Basic =='
{
    "status": "success",
    "data": {
        "balance": [
            {
                "currency": "USDC",
                "totalCollectionsAmount": 100,
                "totalPayoutAmount": 29.069767,
                "totalPayoutInTransitBalance": 0,
                "totalSettledAmount": 0,
                "totalUnsettledAmount": 100,
                "totalAvailablePrefundingBalance": 191970.930233,
                "totalPayoutFee": 0
            }
        ],
        "date": "2026-03-02"
    },
    "pagination": {
        "total": 1,
        "pages": 1,
        "currentPage": 1,
        "limit": 5,
        "hasNext": false,
        "hasPrev": false
    }
}


Did this page help you?