Retrieve all accounts
curl --request GET \
--url https://api.brale.xyz/accounts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.brale.xyz/accounts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.brale.xyz/accounts', 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.brale.xyz/accounts",
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://api.brale.xyz/accounts"
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://api.brale.xyz/accounts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.brale.xyz/accounts")
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_body[
{
"id": "2VcUIIsgARwVbEGlIYbhg6fGG57",
"name": "ABC Company",
"status": "complete",
"created": "2026-01-01T00:00:00Z",
"updated": "2026-01-01T00:00:00Z"
}
]Accounts
Retrieve all accounts
Retrieve your client account and any managed accounts, returning account IDs, names, and KYB status.
GET
/
accounts
Retrieve all accounts
curl --request GET \
--url https://api.brale.xyz/accounts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.brale.xyz/accounts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.brale.xyz/accounts', 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.brale.xyz/accounts",
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://api.brale.xyz/accounts"
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://api.brale.xyz/accounts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.brale.xyz/accounts")
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_body[
{
"id": "2VcUIIsgARwVbEGlIYbhg6fGG57",
"name": "ABC Company",
"status": "complete",
"created": "2026-01-01T00:00:00Z",
"updated": "2026-01-01T00:00:00Z"
}
]Use the playground below to try this endpoint directly, or review the OpenAPI details in the right panel.
Account creation requires KYB / business details (see Create a customer account), but account list responses return only this account summary for each account and do not include sensitive KYB details.
Response shape
GET /accounts returns a JSON array of Account summary objects. Each element matches the Retrieve a customer account shape.
Example
Response
[
{
"id": "2VcUIIsgARwVbEGlIYbhg6fGG57",
"name": "ABC Company",
"status": "complete",
"created": "2026-01-01T00:00:00Z",
"updated": "2026-01-01T00:00:00Z"
},
{
"id": "34lCJZ2bxbPAzB3ou67Md01veUo",
"name": "Managed Account Beta",
"status": "pending",
"created": "2026-01-15T12:00:00Z",
"updated": "2026-01-15T12:00:00Z"
}
]
Authorizations
Use the Bearer token returned from the Auth endpoint via OAuth2 client_credentials flow. Include the token in the "Authorization: Bearer " header.
Response
200 - */*
An array of accounts
Pattern:
^[a-zA-Z0-9]{26}$Example:
"2VcUIIsgARwVbEGlIYbhg6fGG57"
Account / business display name returned by the API.
Example:
"ABC Company"
KYB / onboarding status of the account.
Available options:
complete, pending, rejected Example:
"complete"
When the account was created.
Example:
"2026-01-01T00:00:00Z"
When the account was last updated.
Example:
"2026-01-01T00:00:00Z"
Was this page helpful?