List Payouts
curl --request GET \
--url https://quickei.io/pay/sandbox/api/v1/payouts \
--header 'Authorization: Bearer <token>'import requests
url = "https://quickei.io/pay/sandbox/api/v1/payouts"
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/pay/sandbox/api/v1/payouts', 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/pay/sandbox/api/v1/payouts",
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/pay/sandbox/api/v1/payouts"
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/pay/sandbox/api/v1/payouts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://quickei.io/pay/sandbox/api/v1/payouts")
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_bodyPOS API
List Payouts
Retrieve a paginated list of payouts
GET
/
payouts
List Payouts
curl --request GET \
--url https://quickei.io/pay/sandbox/api/v1/payouts \
--header 'Authorization: Bearer <token>'import requests
url = "https://quickei.io/pay/sandbox/api/v1/payouts"
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/pay/sandbox/api/v1/payouts', 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/pay/sandbox/api/v1/payouts",
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/pay/sandbox/api/v1/payouts"
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/pay/sandbox/api/v1/payouts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://quickei.io/pay/sandbox/api/v1/payouts")
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_bodyRetrieve a paginated list of payouts for your merchant account.
Success Response
Endpoint
GET https://quickei.io/pay/sandbox/api/v1/payouts
Query Parameters
string
Filter by status:
pending, processing, completed, failedstring
Start date filter in ISO 8601 format (e.g.
2026-03-01)string
End date filter in ISO 8601 format (e.g.
2026-03-31)integer
Page number (default:
1)integer
Results per page (1–100, default:
20)Example Request
GET /merchant-api/pos/v1/payouts?status=completed&from_date=2026-03-01&to_date=2026-03-31&page=1&per_page=20
Authorization: Basic {base64_credentials}
Success Response 200
{
"message": {
"success": ["Payouts retrieved"]
},
"data": {
"payouts": [
{
"id": "PYT-20260323-X4K9M2",
"reference": "PAY-2026-0042",
"amount": 10000,
"currency": "XAF",
"fee": 200,
"total_deducted": 10200,
"status": "completed",
"recipient": {
"type": "mobile_money",
"mobile_code": "237",
"mobile_number": "670000000",
"operator": "mtn"
},
"description": "Salary March 2026",
"failure_reason": null,
"processed_at": "2026-03-23T10:31:15+00:00",
"created_at": "2026-03-23T10:30:00+00:00"
},
{
"id": "PYT-20260322-B7N3P1",
"reference": "PAY-2026-0041",
"amount": 50000,
"currency": "XAF",
"fee": 1000,
"total_deducted": 51000,
"status": "completed",
"recipient": {
"type": "bank_transfer",
"bank_code": "AFRIFRPP",
"account_number": "CM2100010001000000000123",
"account_name": "Jean Dupont"
},
"description": "Supplier payment",
"failure_reason": null,
"processed_at": "2026-03-22T16:45:20+00:00",
"created_at": "2026-03-22T16:40:00+00:00"
}
],
"pagination": {
"current_page": 1,
"per_page": 20,
"total": 42,
"last_page": 3
}
}
}

