Skip to main content
GET
/
api
/
payouts
/
deposit-options
List deposit options
curl --request GET \
  --url https://business.madhousewallet.com/api/payouts/deposit-options \
  --header 'Authorization: Bearer <token>'
{
  "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"
    }
  ]
}

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token: Authorization: Bearer mw_live_<keyId>_<secret>

Response

Deposit options returned

options
object[]