Balance
You can check your account balance, bank account associated/allocated to your account.
Last updated
You can check your account balance, bank account associated/allocated to your account.
Last updated
curl --location --request GET 'https://api.oneappgo.com/v1/balance' \
--header 'Authorization: Bearer SECRET_KEY'
var request = require('request');
var options = {
'method': 'GET',
'url': 'https://api.oneappgo.com/v1/balance',
'headers': {
'Authorization': 'Bearer SECRET_KEY'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.oneappgo.com/v1/balance',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer SECRET_KEY'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
import requests
url = "https://api.oneappgo.com/v1/balance"
payload={}
headers = {
'Authorization': 'Bearer SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
var headers = {
'Authorization': 'Bearer SECRET_KEY'
};
var request = http.Request('GET', Uri.parse('https://api.oneappgo.com/v1/balance'));
request.headers.addAll(headers);
http.StreamedResponse response = await request.send();
if (response.statusCode == 200) {
print(await response.stream.bytesToString());
}
else {
print(response.reasonPhrase);
}
authorization* | String | Set value to |
{
"status": true,
"message": "Account Balance Retrieved",
"ledger_bal": "0.00",
"available_bal": "34602.11",
"currency": "NGN",
"acctlist": [
{
"bankname": "Providus Bank",
"acctname": "1APP(John Doe)",
"accountnumber": "1234567890"
},
{
"bankname": "Fidelity bank",
"acctname": "John Doe",
"accountnumber": "4550589796"
},
]
}
{
"status": true,
"message": "Account Balance Retrieved",
"ledger_bal": "0.00",
"available_bal": "34602.11",
"currency": "NGN",
"acctlist": [
{
"bankname": "Providus Bank",
"acctname": "1APP(John Doe)",
"accountnumber": "1234567890"
},
{
"bankname": "Kuda Bank",
"acctname": "1APP(Paul Doe)",
"accountnumber": "2345678900"
},
]
}