Fetch Saved Banks
curl --request GET \
--url https://api.breet.io/v1/payments/integration-banks \
--header 'X-Breet-Env: <api-key>' \
--header 'x-app-id: <api-key>' \
--header 'x-app-secret: <api-key>'import requests
url = "https://api.breet.io/v1/payments/integration-banks"
headers = {
"x-app-id": "<api-key>",
"x-app-secret": "<api-key>",
"X-Breet-Env": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'x-app-id': '<api-key>',
'x-app-secret': '<api-key>',
'X-Breet-Env': '<api-key>'
}
};
fetch('https://api.breet.io/v1/payments/integration-banks', 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://api.breet.io/v1/payments/integration-banks",
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-Breet-Env: <api-key>",
"x-app-id: <api-key>",
"x-app-secret: <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://api.breet.io/v1/payments/integration-banks"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-app-id", "<api-key>")
req.Header.Add("x-app-secret", "<api-key>")
req.Header.Add("X-Breet-Env", "<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://api.breet.io/v1/payments/integration-banks")
.header("x-app-id", "<api-key>")
.header("x-app-secret", "<api-key>")
.header("X-Breet-Env", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.breet.io/v1/payments/integration-banks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-app-id"] = '<api-key>'
request["x-app-secret"] = '<api-key>'
request["X-Breet-Env"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "data fetched",
"success": true,
"data": [
{
"id": "69737920df8b52679a8b198e",
"account": "69547e78ab637caab7d7839c",
"user": "68ca0d24604d65932aac2fc8",
"accountName": "CHIROMA AHMED OLABANJI",
"accountNumber": "3154021148",
"autoSettlement": false,
"bankId": "39",
"bankName": "United Bank For Africa",
"createdAt": "2026-01-23T13:35:27.948Z",
"currency": "ngn",
"disabled": false,
"integration": "692d994b7ca6e4da422363fb",
"isBusiness": true,
"narration": "Breet withdrawal",
"type": "nuban",
"updatedAt": "2026-01-23T13:35:27.948Z"
},
{
"id": "696a6357dd13b3647ce92145",
"account": "67b7aa056ea7a058534bf404",
"user": "68ca0d24604d65932aac2fc8",
"accountName": "CHIROMA AHMED OLABANJI",
"accountNumber": "8029201214",
"anchorCounterPartyId": "17400898642731-anc_cp",
"autoSettlement": false,
"bankId": "25",
"bankName": "OPay - Paycom",
"createdAt": "2026-01-16T16:12:06.950Z",
"currency": "ngn",
"disabled": false,
"integration": "692d994b7ca6e4da422363fb",
"isBusiness": true,
"narration": "Breet payout account",
"type": "nuban",
"updatedAt": "2026-01-16T16:12:06.950Z"
}
],
"meta": {
"pages": 1,
"prevPage": null,
"nextPage": null,
"page": 1,
"totalDocs": 2,
"hasPrevPage": false,
"hasNextPage": false
},
"summary": {},
"stats": {}
}Banks
Fetch Saved Banks
Fetch banks on your integration
GET
/
payments
/
integration-banks
Fetch Saved Banks
curl --request GET \
--url https://api.breet.io/v1/payments/integration-banks \
--header 'X-Breet-Env: <api-key>' \
--header 'x-app-id: <api-key>' \
--header 'x-app-secret: <api-key>'import requests
url = "https://api.breet.io/v1/payments/integration-banks"
headers = {
"x-app-id": "<api-key>",
"x-app-secret": "<api-key>",
"X-Breet-Env": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'x-app-id': '<api-key>',
'x-app-secret': '<api-key>',
'X-Breet-Env': '<api-key>'
}
};
fetch('https://api.breet.io/v1/payments/integration-banks', 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://api.breet.io/v1/payments/integration-banks",
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-Breet-Env: <api-key>",
"x-app-id: <api-key>",
"x-app-secret: <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://api.breet.io/v1/payments/integration-banks"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-app-id", "<api-key>")
req.Header.Add("x-app-secret", "<api-key>")
req.Header.Add("X-Breet-Env", "<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://api.breet.io/v1/payments/integration-banks")
.header("x-app-id", "<api-key>")
.header("x-app-secret", "<api-key>")
.header("X-Breet-Env", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.breet.io/v1/payments/integration-banks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-app-id"] = '<api-key>'
request["x-app-secret"] = '<api-key>'
request["X-Breet-Env"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "data fetched",
"success": true,
"data": [
{
"id": "69737920df8b52679a8b198e",
"account": "69547e78ab637caab7d7839c",
"user": "68ca0d24604d65932aac2fc8",
"accountName": "CHIROMA AHMED OLABANJI",
"accountNumber": "3154021148",
"autoSettlement": false,
"bankId": "39",
"bankName": "United Bank For Africa",
"createdAt": "2026-01-23T13:35:27.948Z",
"currency": "ngn",
"disabled": false,
"integration": "692d994b7ca6e4da422363fb",
"isBusiness": true,
"narration": "Breet withdrawal",
"type": "nuban",
"updatedAt": "2026-01-23T13:35:27.948Z"
},
{
"id": "696a6357dd13b3647ce92145",
"account": "67b7aa056ea7a058534bf404",
"user": "68ca0d24604d65932aac2fc8",
"accountName": "CHIROMA AHMED OLABANJI",
"accountNumber": "8029201214",
"anchorCounterPartyId": "17400898642731-anc_cp",
"autoSettlement": false,
"bankId": "25",
"bankName": "OPay - Paycom",
"createdAt": "2026-01-16T16:12:06.950Z",
"currency": "ngn",
"disabled": false,
"integration": "692d994b7ca6e4da422363fb",
"isBusiness": true,
"narration": "Breet payout account",
"type": "nuban",
"updatedAt": "2026-01-16T16:12:06.950Z"
}
],
"meta": {
"pages": 1,
"prevPage": null,
"nextPage": null,
"page": 1,
"totalDocs": 2,
"hasPrevPage": false,
"hasNextPage": false
},
"summary": {},
"stats": {}
}Authorizations
Your application ID from the Breet dashboard
Your application secret from the Breet dashboard
Environment selector: development or production
Response
List of integration banks returned successfully
Was this page helpful?
⌘I