curl --request GET \
--url https://api.rach.finance/api/v1/wallet/fees \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.rach.finance/api/v1/wallet/fees"
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.rach.finance/api/v1/wallet/fees', 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.rach.finance/api/v1/wallet/fees",
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.rach.finance/api/v1/wallet/fees"
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.rach.finance/api/v1/wallet/fees")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rach.finance/api/v1/wallet/fees")
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{
"is_enabled": true,
"fee_mode": "percentage",
"fee_percent": "0.005",
"fee_cap_usd": "5",
"flat_fee_usd": "0.50",
"fee_addresses": {
"ETH": "0xYourAddr",
"BSC": "0xYourAddr",
"TRX": "TYourAddr"
},
"admin_locked": true
}Get your WaaS transfer fee configuration
Returns the fee you charge on customer transfers, plus your per-network receiving addresses.
If admin_locked is true, the fee was pinned by Rach under a negotiated agreement and you
cannot change it yourself — POST will be rejected.
curl --request GET \
--url https://api.rach.finance/api/v1/wallet/fees \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.rach.finance/api/v1/wallet/fees"
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.rach.finance/api/v1/wallet/fees', 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.rach.finance/api/v1/wallet/fees",
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.rach.finance/api/v1/wallet/fees"
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.rach.finance/api/v1/wallet/fees")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rach.finance/api/v1/wallet/fees")
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{
"is_enabled": true,
"fee_mode": "percentage",
"fee_percent": "0.005",
"fee_cap_usd": "5",
"flat_fee_usd": "0.50",
"fee_addresses": {
"ETH": "0xYourAddr",
"BSC": "0xYourAddr",
"TRX": "TYourAddr"
},
"admin_locked": true
}Authorizations
Business API key for server-to-server integrations.
Key prefix determines the environment — no separate flag needed:
test_sk_* = sandbox/testnet, live_sk_* = production/mainnet.
Response
Current fee configuration
Master switch. When false, no fee is collected on any transfer.
percentage = fee_percent of the amount, optionally capped at fee_cap_usd. flat = a fixed flat_fee_usd charge.
percentage, flat A FRACTION, not a percent — "0.005" means 0.5%. Percentage mode only.
"0.005"
Caps the percentage fee in USD. "0" = uncapped. Percentage mode only.
"5"
Fixed USD charge, converted to the transferred asset. Flat mode only.
"0.50"
Network code → YOUR receiving address. A network with no address collects NO fee.
Show child attributes
Show child attributes
{ "ETH": "0xYourAddr", "BSC": "0xYourAddr", "TRX": "TYourAddr" }
True = fee is pinned by Rach; POST will be rejected.

