Purchase accounts and balances
get purchase accounts and balances post /selling/api/loans/purchase/accounts balances get the purchase accounts and their balances for loans matching the given purchase parameters returns all accounts that would be used, useful when purchases span multiple accounts request body { "date" "2026 08 05", "loantype" 1, "issuingbank" "crb", "mplid" "abc", "investorid" "investor name" } field type required description date string yes purchase date in yyyy mm dd format must be a fed day loantype integer yes loan type 1 = hfs, 2 = lthfs issuingbank string yes issuing bank identifier mplid string yes mpl identifier investorid string no investor identifier (optional) response 200 ok returns an array of account objects with balances \[ { "accountnumber" "1234567890", "balance" 2500000 00 }, { "accountnumber" "0987654321", "balance" 1750000 00 } ] example request post /selling/api/loans/purchase/accounts balances content type application/json { "date" "2026 08 05", "loantype" 1, "issuingbank" "crb", "mplid" "abc" } use cases multi account monitoring view all accounts involved in a purchase balance distribution see how funds are spread across accounts pre purchase verification confirm total available funds across all accounts