Get balance across all chains
curl --request GET \
--url https://{host}/extern/svr/{accountTypeId}/account/{accountId}/balance \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://{host}/extern/svr/{accountTypeId}/account/{accountId}/balance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{host}/extern/svr/{accountTypeId}/account/{accountId}/balance"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": "<string>",
"data": {
"accountId": "<string>",
"safeAddress": "<string>",
"perChain": [
{
"chainId": 123,
"vaultAddress": "<string>",
"total": {},
"totalUnderlying": "<string>",
"totalUnderlyingDecimals": 123,
"heldAssets": [
{
"address": "<string>",
"symbol": "<string>",
"chainId": 123
}
]
}
],
"total": {},
"heldAssets": [
{
"address": "<string>",
"symbol": "<string>",
"chainId": 123
}
]
}
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}Get balance across all chains
GET
/
extern
/
svr
/
{accountTypeId}
/
account
/
{accountId}
/
balance
Get balance across all chains
curl --request GET \
--url https://{host}/extern/svr/{accountTypeId}/account/{accountId}/balance \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://{host}/extern/svr/{accountTypeId}/account/{accountId}/balance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{host}/extern/svr/{accountTypeId}/account/{accountId}/balance"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": "<string>",
"data": {
"accountId": "<string>",
"safeAddress": "<string>",
"perChain": [
{
"chainId": 123,
"vaultAddress": "<string>",
"total": {},
"totalUnderlying": "<string>",
"totalUnderlyingDecimals": 123,
"heldAssets": [
{
"address": "<string>",
"symbol": "<string>",
"chainId": 123
}
]
}
],
"total": {},
"heldAssets": [
{
"address": "<string>",
"symbol": "<string>",
"chainId": 123
}
]
}
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}{
"status": "<string>",
"message": "<string>"
}Last modified on July 3, 2026
Was this page helpful?
⌘I