List end users
curl --request GET \
--url https://api.balansas.com/functions/v1/customer-api/end-users \
--header 'x-api-key: <api-key>'import requests
url = "https://api.balansas.com/functions/v1/customer-api/end-users"
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://api.balansas.com/functions/v1/customer-api/end-users', 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.balansas.com/functions/v1/customer-api/end-users",
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://api.balansas.com/functions/v1/customer-api/end-users"
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://api.balansas.com/functions/v1/customer-api/end-users")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.balansas.com/functions/v1/customer-api/end-users")
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{
"data": [
{
"id": "9e2b1c34-5d6e-4f70-8a91-2b3c4d5e6f70",
"fr_end_user_id": "eu_5Lk9Pm",
"end_user_type": "INDIVIDUAL",
"first_name": "Maria",
"middle_name": "Elena",
"last_name": "Rossi",
"company_name": "Helix Trading Ltd",
"email": "[email protected]",
"reference_code": "EU-GWG2HS32",
"status": "pending_verification",
"fr_owner_business_id": "busi_8Jh2KdLm5Qx",
"registration_number": "12345678",
"registration_date": "2019-06-15",
"business_type": "LIMITED_COMPANY",
"incorporation_country": "IE",
"sector": "OTHER_PRODUCTS_SERVICES",
"risk_tier": "low_risk",
"verification_completed_at": "2026-05-21T08:00:00.000Z",
"disclosure_accepted_at": "2026-05-23T10:05:00.000Z",
"disclosure_version": "ppa-v1.2-2026-05-23",
"reverse_solicitation": {
"required": true,
"accepted": false
},
"created_at": "2026-05-28T11:02:09.456Z",
"updated_at": "2026-05-28T11:02:09.456Z"
}
],
"meta": {
"pagination": {
"page": 1,
"limit": 25,
"total": 100
}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}End Users
List end users
GET
/
end-users
List end users
curl --request GET \
--url https://api.balansas.com/functions/v1/customer-api/end-users \
--header 'x-api-key: <api-key>'import requests
url = "https://api.balansas.com/functions/v1/customer-api/end-users"
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://api.balansas.com/functions/v1/customer-api/end-users', 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.balansas.com/functions/v1/customer-api/end-users",
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://api.balansas.com/functions/v1/customer-api/end-users"
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://api.balansas.com/functions/v1/customer-api/end-users")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.balansas.com/functions/v1/customer-api/end-users")
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{
"data": [
{
"id": "9e2b1c34-5d6e-4f70-8a91-2b3c4d5e6f70",
"fr_end_user_id": "eu_5Lk9Pm",
"end_user_type": "INDIVIDUAL",
"first_name": "Maria",
"middle_name": "Elena",
"last_name": "Rossi",
"company_name": "Helix Trading Ltd",
"email": "[email protected]",
"reference_code": "EU-GWG2HS32",
"status": "pending_verification",
"fr_owner_business_id": "busi_8Jh2KdLm5Qx",
"registration_number": "12345678",
"registration_date": "2019-06-15",
"business_type": "LIMITED_COMPANY",
"incorporation_country": "IE",
"sector": "OTHER_PRODUCTS_SERVICES",
"risk_tier": "low_risk",
"verification_completed_at": "2026-05-21T08:00:00.000Z",
"disclosure_accepted_at": "2026-05-23T10:05:00.000Z",
"disclosure_version": "ppa-v1.2-2026-05-23",
"reverse_solicitation": {
"required": true,
"accepted": false
},
"created_at": "2026-05-28T11:02:09.456Z",
"updated_at": "2026-05-28T11:02:09.456Z"
}
],
"meta": {
"pagination": {
"page": 1,
"limit": 25,
"total": 100
}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}⌘I

