List deposit options
curl --request GET \
--url https://business.madhousewallet.com/api/payouts/deposit-options \
--header 'Authorization: Bearer <token>'import requests
url = "https://business.madhousewallet.com/api/payouts/deposit-options"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://business.madhousewallet.com/api/payouts/deposit-options', 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://business.madhousewallet.com/api/payouts/deposit-options",
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://business.madhousewallet.com/api/payouts/deposit-options"
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://business.madhousewallet.com/api/payouts/deposit-options")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://business.madhousewallet.com/api/payouts/deposit-options")
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{
"options": [
{
"token": "usdc",
"network": "arbitrum",
"label": "USDC on Arbitrum",
"tokenLabel": "USDC",
"networkLabel": "Arbitrum",
"status": "available"
},
{
"token": "usdc",
"network": "base",
"label": "USDC on Base",
"tokenLabel": "USDC",
"networkLabel": "Base",
"status": "available"
},
{
"token": "usdc",
"network": "solana",
"label": "USDC on Solana",
"tokenLabel": "USDC",
"networkLabel": "Solana",
"status": "unavailable"
},
{
"token": "usdt",
"network": "tron",
"label": "USDT on Tron",
"tokenLabel": "USDT",
"networkLabel": "Tron",
"status": "unavailable"
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}Payouts
List deposit options
Returns the list of source token/network combinations accepted for deposits. Use the token and network values as source_token and source_network in POST /api/payouts/transfer.
Every option includes a status field — "available" or "unavailable". Unavailable options are temporarily disabled; do not use their token/network values in a transfer request.
Rate limit: 60 requests/minute.
GET
/
api
/
payouts
/
deposit-options
List deposit options
curl --request GET \
--url https://business.madhousewallet.com/api/payouts/deposit-options \
--header 'Authorization: Bearer <token>'import requests
url = "https://business.madhousewallet.com/api/payouts/deposit-options"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://business.madhousewallet.com/api/payouts/deposit-options', 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://business.madhousewallet.com/api/payouts/deposit-options",
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://business.madhousewallet.com/api/payouts/deposit-options"
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://business.madhousewallet.com/api/payouts/deposit-options")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://business.madhousewallet.com/api/payouts/deposit-options")
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{
"options": [
{
"token": "usdc",
"network": "arbitrum",
"label": "USDC on Arbitrum",
"tokenLabel": "USDC",
"networkLabel": "Arbitrum",
"status": "available"
},
{
"token": "usdc",
"network": "base",
"label": "USDC on Base",
"tokenLabel": "USDC",
"networkLabel": "Base",
"status": "available"
},
{
"token": "usdc",
"network": "solana",
"label": "USDC on Solana",
"tokenLabel": "USDC",
"networkLabel": "Solana",
"status": "unavailable"
},
{
"token": "usdt",
"network": "tron",
"label": "USDT on Tron",
"tokenLabel": "USDT",
"networkLabel": "Tron",
"status": "unavailable"
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}⌘I
