Get checkout wallets
curl --request GET \
--url https://checkout-staging.embedly.ng/api/v1/checkout-wallet \
--header 'x-api-key: <api-key>'import requests
url = "https://checkout-staging.embedly.ng/api/v1/checkout-wallet"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://checkout-staging.embedly.ng/api/v1/checkout-wallet', 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://checkout-staging.embedly.ng/api/v1/checkout-wallet",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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://checkout-staging.embedly.ng/api/v1/checkout-wallet"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://checkout-staging.embedly.ng/api/v1/checkout-wallet")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://checkout-staging.embedly.ng/api/v1/checkout-wallet")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"statusCode": 200,
"message": "success",
"data": [
{
"id": "d8c01350-b07a-4547-a9e6-71e3654dca7c",
"walletNumber": "7537432415",
"organizationId": "0075b72d-6648-11f0-a7cf-0274f77d4a81",
"walletName": "Seafinish Global",
"status": "Expired",
"createdAt": "2025-11-19T17:41:48.083601Z",
"expiresAt": "2025-11-19T18:31:48.083613Z",
"usedAt": null,
"expiredAt": "2025-11-19T18:32:45.075012Z",
"reactivatedAt": null,
"expectedAmount": 5000,
"invoiceReference": null,
"description": null,
"currencyCode": "NGN",
"customerEmail": "ada@getnada.com",
"customerName": null,
"metadata": "{\"name\": \"Ada\"}",
"splitType": "Fixed",
"splitConfigurations": [
{
"id": "1b6bd9e3-0822-4840-b414-a75c22cafe7b",
"beneficiaryId": "cb0ada60-472a-49a3-b1d2-35d25522c5d8",
"splitValue": 3000,
"feeValue": 500,
"feeBearer": true,
"beneficiary": {
"id": "cb0ada60-472a-49a3-b1d2-35d25522c5d8",
"beneficiaryName": "Ikem",
"accountNumber": "7035336912",
"bankCode": "034",
"beneficiaryAlias": "Ada",
"isActive": true
}
},
{
"id": "d921f009-2537-4934-ba77-4e6e75b85171",
"beneficiaryId": "3c10b0c8-d1e1-4814-b997-561c45454964",
"splitValue": 2000,
"feeValue": 500,
"feeBearer": true,
"beneficiary": {
"id": "3c10b0c8-d1e1-4814-b997-561c45454964",
"beneficiaryName": "lope",
"accountNumber": "3469967352",
"bankCode": "099",
"beneficiaryAlias": "Mel",
"isActive": true
}
}
],
"walletHistories": [
{
"id": "31187004-d803-401c-92d9-538b503d08f0",
"checkoutRef": "CHK202511191741489589689",
"expectedAmount": 5000,
"generatedAt": "2025-11-19T17:41:48.962458Z",
"usedAt": null,
"status": "Expired",
"transactionId": null
}
]
}
],
"pagination": {
"currentPage": 1,
"pageSize": 10,
"totalCount": 82,
"totalPages": 9,
"hasNextPage": true,
"hasPreviousPage": false
}
}
{
"code": "401",
"success": false,
"message": "x-api-key is missing in the header",
"data": null
}
{
"statusCode": 403,
"message": "Access denied. The API key provided is for another organization. You can only access your organization's wallets.",
"data": null
}
Checkout
Get checkout wallets
Endpoint for getting all checkout wallets under an organization using the Organization Id
GET
/
api
/
v1
/
checkout-wallet
Get checkout wallets
curl --request GET \
--url https://checkout-staging.embedly.ng/api/v1/checkout-wallet \
--header 'x-api-key: <api-key>'import requests
url = "https://checkout-staging.embedly.ng/api/v1/checkout-wallet"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://checkout-staging.embedly.ng/api/v1/checkout-wallet', 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://checkout-staging.embedly.ng/api/v1/checkout-wallet",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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://checkout-staging.embedly.ng/api/v1/checkout-wallet"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://checkout-staging.embedly.ng/api/v1/checkout-wallet")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://checkout-staging.embedly.ng/api/v1/checkout-wallet")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"statusCode": 200,
"message": "success",
"data": [
{
"id": "d8c01350-b07a-4547-a9e6-71e3654dca7c",
"walletNumber": "7537432415",
"organizationId": "0075b72d-6648-11f0-a7cf-0274f77d4a81",
"walletName": "Seafinish Global",
"status": "Expired",
"createdAt": "2025-11-19T17:41:48.083601Z",
"expiresAt": "2025-11-19T18:31:48.083613Z",
"usedAt": null,
"expiredAt": "2025-11-19T18:32:45.075012Z",
"reactivatedAt": null,
"expectedAmount": 5000,
"invoiceReference": null,
"description": null,
"currencyCode": "NGN",
"customerEmail": "ada@getnada.com",
"customerName": null,
"metadata": "{\"name\": \"Ada\"}",
"splitType": "Fixed",
"splitConfigurations": [
{
"id": "1b6bd9e3-0822-4840-b414-a75c22cafe7b",
"beneficiaryId": "cb0ada60-472a-49a3-b1d2-35d25522c5d8",
"splitValue": 3000,
"feeValue": 500,
"feeBearer": true,
"beneficiary": {
"id": "cb0ada60-472a-49a3-b1d2-35d25522c5d8",
"beneficiaryName": "Ikem",
"accountNumber": "7035336912",
"bankCode": "034",
"beneficiaryAlias": "Ada",
"isActive": true
}
},
{
"id": "d921f009-2537-4934-ba77-4e6e75b85171",
"beneficiaryId": "3c10b0c8-d1e1-4814-b997-561c45454964",
"splitValue": 2000,
"feeValue": 500,
"feeBearer": true,
"beneficiary": {
"id": "3c10b0c8-d1e1-4814-b997-561c45454964",
"beneficiaryName": "lope",
"accountNumber": "3469967352",
"bankCode": "099",
"beneficiaryAlias": "Mel",
"isActive": true
}
}
],
"walletHistories": [
{
"id": "31187004-d803-401c-92d9-538b503d08f0",
"checkoutRef": "CHK202511191741489589689",
"expectedAmount": 5000,
"generatedAt": "2025-11-19T17:41:48.962458Z",
"usedAt": null,
"status": "Expired",
"transactionId": null
}
]
}
],
"pagination": {
"currentPage": 1,
"pageSize": 10,
"totalCount": 82,
"totalPages": 9,
"hasNextPage": true,
"hasPreviousPage": false
}
}
{
"code": "401",
"success": false,
"message": "x-api-key is missing in the header",
"data": null
}
{
"statusCode": 403,
"message": "Access denied. The API key provided is for another organization. You can only access your organization's wallets.",
"data": null
}
string
required
The unique organizationId. Exmaple:
3fa85f64-5717-4562-b3fc-2c963f66afa6string
default:"1"
string
default:"10"
string
string
string
string
string
{
"statusCode": 200,
"message": "success",
"data": [
{
"id": "d8c01350-b07a-4547-a9e6-71e3654dca7c",
"walletNumber": "7537432415",
"organizationId": "0075b72d-6648-11f0-a7cf-0274f77d4a81",
"walletName": "Seafinish Global",
"status": "Expired",
"createdAt": "2025-11-19T17:41:48.083601Z",
"expiresAt": "2025-11-19T18:31:48.083613Z",
"usedAt": null,
"expiredAt": "2025-11-19T18:32:45.075012Z",
"reactivatedAt": null,
"expectedAmount": 5000,
"invoiceReference": null,
"description": null,
"currencyCode": "NGN",
"customerEmail": "ada@getnada.com",
"customerName": null,
"metadata": "{\"name\": \"Ada\"}",
"splitType": "Fixed",
"splitConfigurations": [
{
"id": "1b6bd9e3-0822-4840-b414-a75c22cafe7b",
"beneficiaryId": "cb0ada60-472a-49a3-b1d2-35d25522c5d8",
"splitValue": 3000,
"feeValue": 500,
"feeBearer": true,
"beneficiary": {
"id": "cb0ada60-472a-49a3-b1d2-35d25522c5d8",
"beneficiaryName": "Ikem",
"accountNumber": "7035336912",
"bankCode": "034",
"beneficiaryAlias": "Ada",
"isActive": true
}
},
{
"id": "d921f009-2537-4934-ba77-4e6e75b85171",
"beneficiaryId": "3c10b0c8-d1e1-4814-b997-561c45454964",
"splitValue": 2000,
"feeValue": 500,
"feeBearer": true,
"beneficiary": {
"id": "3c10b0c8-d1e1-4814-b997-561c45454964",
"beneficiaryName": "lope",
"accountNumber": "3469967352",
"bankCode": "099",
"beneficiaryAlias": "Mel",
"isActive": true
}
}
],
"walletHistories": [
{
"id": "31187004-d803-401c-92d9-538b503d08f0",
"checkoutRef": "CHK202511191741489589689",
"expectedAmount": 5000,
"generatedAt": "2025-11-19T17:41:48.962458Z",
"usedAt": null,
"status": "Expired",
"transactionId": null
}
]
}
],
"pagination": {
"currentPage": 1,
"pageSize": 10,
"totalCount": 82,
"totalPages": 9,
"hasNextPage": true,
"hasPreviousPage": false
}
}
{
"code": "401",
"success": false,
"message": "x-api-key is missing in the header",
"data": null
}
{
"statusCode": 403,
"message": "Access denied. The API key provided is for another organization. You can only access your organization's wallets.",
"data": null
}
⌘I