Wallet Balance
curl --request GET \
--url https://quickei.io/api/partner/sandbox/v1/balance \
--header 'Authorization: Bearer <token>'import requests
url = "https://quickei.io/api/partner/sandbox/v1/balance"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://quickei.io/api/partner/sandbox/v1/balance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://quickei.io/api/partner/sandbox/v1/balance",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://quickei.io/api/partner/sandbox/v1/balance"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://quickei.io/api/partner/sandbox/v1/balance")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://quickei.io/api/partner/sandbox/v1/balance")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"balances": [
{}
],
"balances[].currency_code": "<string>",
"balances[].currency_symbol": "<string>",
"balances[].balance": 123
}Partner API
Wallet Balance
Get your merchant wallet balances
GET
/
api
/
partner
/
sandbox
/
v1
/
balance
Wallet Balance
curl --request GET \
--url https://quickei.io/api/partner/sandbox/v1/balance \
--header 'Authorization: Bearer <token>'import requests
url = "https://quickei.io/api/partner/sandbox/v1/balance"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://quickei.io/api/partner/sandbox/v1/balance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://quickei.io/api/partner/sandbox/v1/balance",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://quickei.io/api/partner/sandbox/v1/balance"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://quickei.io/api/partner/sandbox/v1/balance")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://quickei.io/api/partner/sandbox/v1/balance")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"balances": [
{}
],
"balances[].currency_code": "<string>",
"balances[].currency_symbol": "<string>",
"balances[].balance": 123
}Retrieve the current balances of all active wallets on your merchant account.
Success Response
Example Request
curl -X GET https://quickei.io/api/partner/sandbox/v1/balance \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
Success Response 200
{
"message": {
"success": ["Wallet balances."]
},
"data": {
"balances": [
{
"currency_code": "EUR",
"currency_symbol": "\u20ac",
"balance": 12450.75
},
{
"currency_code": "USD",
"currency_symbol": "$",
"balance": 5320.00
},
{
"currency_code": "XAF",
"currency_symbol": "FCFA",
"balance": 1500000.00
}
]
}
}
array
List of all active wallets on the merchant account.
string
ISO 4217 currency code.
string
Currency symbol for display (e.g.
$, FCFA).number
Current wallet balance.
Only wallets with an active currency are returned. If a currency is deactivated by the platform, the wallet will not appear in the response.
Error Responses
| Status | Message | Cause |
|---|---|---|
401 | Invalid API credentials. | Bad or missing Bearer token |

