Get Withdrawal Balances
curl --request GET \
--url https://api.hel.io/v1/withdraw/{withdrawalConfigId}/balancesimport requests
url = "https://api.hel.io/v1/withdraw/{withdrawalConfigId}/balances"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hel.io/v1/withdraw/{withdrawalConfigId}/balances', 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.hel.io/v1/withdraw/{withdrawalConfigId}/balances",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.hel.io/v1/withdraw/{withdrawalConfigId}/balances"
req, _ := http.NewRequest("GET", url, nil)
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.hel.io/v1/withdraw/{withdrawalConfigId}/balances")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hel.io/v1/withdraw/{withdrawalConfigId}/balances")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"walletAddress": "<string>",
"balances": [
{
"currencyId": "<string>",
"symbol": "<string>",
"mintAddress": "<string>",
"balance": "<string>",
"uiBalance": "<string>",
"maxWithdrawableAmount": "<string>",
"uiMaxWithdrawableAmount": "<string>"
}
]
}Runtime Flow
Get Withdrawal Balances
Returns on-chain balances for a wallet address against the withdrawal config’s source currencies. No authentication required (rate-limited, cached ~5s).
GET
/
v1
/
withdraw
/
{withdrawalConfigId}
/
balances
Get Withdrawal Balances
curl --request GET \
--url https://api.hel.io/v1/withdraw/{withdrawalConfigId}/balancesimport requests
url = "https://api.hel.io/v1/withdraw/{withdrawalConfigId}/balances"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hel.io/v1/withdraw/{withdrawalConfigId}/balances', 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.hel.io/v1/withdraw/{withdrawalConfigId}/balances",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.hel.io/v1/withdraw/{withdrawalConfigId}/balances"
req, _ := http.NewRequest("GET", url, nil)
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.hel.io/v1/withdraw/{withdrawalConfigId}/balances")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hel.io/v1/withdraw/{withdrawalConfigId}/balances")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"walletAddress": "<string>",
"balances": [
{
"currencyId": "<string>",
"symbol": "<string>",
"mintAddress": "<string>",
"balance": "<string>",
"uiBalance": "<string>",
"maxWithdrawableAmount": "<string>",
"uiMaxWithdrawableAmount": "<string>"
}
]
}Note: When using the production environment at moonpay.hel.io, set your API endpoint to
api.hel.io/v1. For the development environment, use api.dev.hel.io/v1.Path Parameters
The withdrawal config ID.
Query Parameters
Wallet address (holder pubkey) to read balances for.
