Get Payout
curl --request GET \
--url https://quickei.io/pay/sandbox/api/v1/payouts/{payout_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://quickei.io/pay/sandbox/api/v1/payouts/{payout_id}"
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/{payout_id}', 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/{payout_id}",
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/{payout_id}"
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/{payout_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://quickei.io/pay/sandbox/api/v1/payouts/{payout_id}")
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
Get Payout
Get details of a specific payout
GET
/
payouts
/
{payout_id}
Get Payout
curl --request GET \
--url https://quickei.io/pay/sandbox/api/v1/payouts/{payout_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://quickei.io/pay/sandbox/api/v1/payouts/{payout_id}"
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/{payout_id}', 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/{payout_id}",
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/{payout_id}"
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/{payout_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://quickei.io/pay/sandbox/api/v1/payouts/{payout_id}")
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 the full details and current status of a specific payout.
Success Response
Error Response
Endpoint
GET https://quickei.io/pay/sandbox/api/v1/payouts/{payout_id}
Path Parameters
string
required
The payout ID (e.g.
PYT-20260323-X4K9M2)Response Fields
| Field | Description |
|---|---|
id | Unique payout identifier |
reference | Your internal reference |
amount | Payout amount |
currency | ISO 4217 currency code |
fee | Fee charged for the payout |
total_deducted | Total deducted from wallet (amount + fee) |
status | pending, processing, completed, failed |
recipient | Recipient details (type, account info) |
description | Payout description |
failure_reason | Reason for failure (null unless failed) |
processed_at | ISO 8601 timestamp when payout completed or failed (null while pending/processing) |
created_at | ISO 8601 timestamp of payout creation |
Example Request
GET /merchant-api/pos/v1/payouts/PYT-20260323-X4K9M2
Authorization: Basic {base64_credentials}
Success Response 200
{
"message": {
"success": ["Payout details retrieved"]
},
"data": {
"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"
}
}
Error Response 404
{
"message": {
"error": ["Payout not found"]
}
}

