Fetch withdrawal addresses
curl --request GET \
--url https://api.breet.io/v1/payments/wallet-addresses \
--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/wallet-addresses"
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/wallet-addresses', 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/wallet-addresses",
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/wallet-addresses"
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/wallet-addresses")
.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/wallet-addresses")
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": "6941851b3dd3534cc04dce17",
"createdAt": "2025-12-16T16:13:15.400Z",
"updatedAt": "2025-12-16T16:13:15.400Z",
"user": "68ca0d24604d65932aac2fc8",
"address": "0x464eA3eAEF364CE02FAe74038E1703Fc84FaFdB2",
"network": "ERC20",
"token": "USDT",
"label": "Mine",
"avatar": "https://assets.breet.io/token-network-assets/USDT_ERC20.png",
"id": "6941851b3dd3534cc04dce17"
},
{
"_id": "69b967ede23dfceb5d2d1df6",
"createdAt": "2026-03-17T14:40:45.465Z",
"updatedAt": "2026-03-17T14:40:45.465Z",
"user": "68ca0d24604d65932aac2fc8",
"address": "14grJpemFaf88c8tiVb77W7TYg2W3ir6pfkKz3YjhhZ5",
"network": "SOL",
"token": "USDT",
"label": "Main payout wallettt",
"avatar": "https://assets.breet.io/token-network-assets/USDT_SOL.png",
"isBusiness": true,
"integration": "692d994b7ca6e4da422363fb",
"id": "69b967ede23dfceb5d2d1df6"
}
],
"meta": {},
"summary": {},
"stats": {}
}Wallet addresses
Fetch withdrawal addresses
Fetch all saved withdrawal (payout) wallet addresses for the authenticated user or integration.
GET
/
payments
/
wallet-addresses
Fetch withdrawal addresses
curl --request GET \
--url https://api.breet.io/v1/payments/wallet-addresses \
--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/wallet-addresses"
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/wallet-addresses', 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/wallet-addresses",
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/wallet-addresses"
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/wallet-addresses")
.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/wallet-addresses")
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": "6941851b3dd3534cc04dce17",
"createdAt": "2025-12-16T16:13:15.400Z",
"updatedAt": "2025-12-16T16:13:15.400Z",
"user": "68ca0d24604d65932aac2fc8",
"address": "0x464eA3eAEF364CE02FAe74038E1703Fc84FaFdB2",
"network": "ERC20",
"token": "USDT",
"label": "Mine",
"avatar": "https://assets.breet.io/token-network-assets/USDT_ERC20.png",
"id": "6941851b3dd3534cc04dce17"
},
{
"_id": "69b967ede23dfceb5d2d1df6",
"createdAt": "2026-03-17T14:40:45.465Z",
"updatedAt": "2026-03-17T14:40:45.465Z",
"user": "68ca0d24604d65932aac2fc8",
"address": "14grJpemFaf88c8tiVb77W7TYg2W3ir6pfkKz3YjhhZ5",
"network": "SOL",
"token": "USDT",
"label": "Main payout wallettt",
"avatar": "https://assets.breet.io/token-network-assets/USDT_SOL.png",
"isBusiness": true,
"integration": "692d994b7ca6e4da422363fb",
"id": "69b967ede23dfceb5d2d1df6"
}
],
"meta": {},
"summary": {},
"stats": {}
}Was this page helpful?
⌘I