Monolo API Docs
  • Introduction
  • Authorization
    • API Keys Management
    • Signature
    • Code snippets
  • Environments
  • Errors
  • Expired Payment
  • Changelog
  • References
    • Crypto payments
      • 🔒Request crypto payment
      • 🔒Add payment details
      • 🔒Get payment data
      • Fetch deposit amounts metadata
    • Crypto withdrawals
      • Request withdrawal metadata
      • 🔒Request crypto withdrawal
      • 🔒Request crypto withdrawal approval status
    • Wallet Addresses
      • Validate address
    • Businesses
      • 🔒Get business by ID
      • 🔒Get business deposits
      • 🔒Get business withdrawals
      • 🔒Get business balance
    • Callbacks
      • Deposit received notification
      • Withdrawal broadcast notification
      • Withdrawal approved/rejected notification
    • Currencies & Fees
      • Get all currencies
      • Get exchange rates [crypto to fiat]
      • Get exchange rates [fiat to fiat]
      • Get exchange rates [any currency to any currency]
Powered by GitBook
On this page
  1. References
  2. Crypto withdrawals

Request withdrawal metadata

PreviousCrypto withdrawalsNextRequest crypto withdrawal

Last updated 6 months ago

Response schema

{
        "ETH" : {
                    "ETH" : {
                      "fee" : "0.0032",
                      "minAmount" : "0.0125",
                      "maxAmount" : "116",
                      "precision" : 8,
                      "available" : true
                    },
                    "BSC" : {
                      "fee" : "0.00012",
                      "minAmount" : "0.00035",
                      "maxAmount" : "116",
                      "precision" : 8,
                      "available" : false
                    }
                  },
                  "USDC" : {
                    "ETH" : {
                      "fee" : "15",
                      "minAmount" : "62.5",
                      "maxAmount" : "280000",
                      "precision" : 6,
                      "available" : true
                    },
                    "BSC" : {
                      "fee" : "0.3",
                      "minAmount" : "12.5",
                      "maxAmount" : "280000",
                      "precision" : 8,
                      "available" : true
                    },
                    "TRX" : {
                      "fee" : "1",
                      "minAmount" : "12.5",
                      "maxAmount" : "280000",
                      "precision" : 6,
                      "available" : true
                    }
                  },
                  "LINK" : {
                    "ETH" : {
                      "fee" : "0.67",
                      "minAmount" : "1.675",
                      "maxAmount" : "19200",
                      "precision" : 8,
                      "available" : true
                    }
                  },
                  "XLM" : {
                    "XLM" : {
                      "fee" : "0.02",
                      "minAmount" : "31.25",
                      "maxAmount" : "2240000",
                      "precision" : 7,
                      "available" : true
                    }
                  },
                  "LTC" : {
                    "LTC" : {
                      "fee" : "0.001",
                      "minAmount" : "0.0025",
                      "maxAmount" : "4000",
                      "precision" : 8,
                      "available" : true
                    }
                  },
                  "BCH" : {
                    "BCH" : {
                      "fee" : "0.00064",
                      "minAmount" : "0.0025",
                      "maxAmount" : "1200",
                      "precision" : 8,
                      "available" : true
                    }
                  },
                  "BTC" : {
                    "BTC" : {
                      "fee" : "0.00034",
                      "minAmount" : "0.001875",
                      "maxAmount" : "7.2",
                      "precision" : 8,
                      "available" : true
                    }
                  },
                  "XRP" : {
                    "XRP" : {
                      "fee" : "0.2",
                      "minAmount" : "18.75",
                      "maxAmount" : "480000",
                      "precision" : 6,
                      "available" : true
                    }
                  }
 }

Fetch withdrawal metadata

get

Fetch the withdrawal metadata (fee, limits, availability) per network for each supported cryptocurrency.

Responses
200
Returns the full withdrawal metadata for each currency and its supported networks.
application/json
get
GET /api/v1/withdrawals/metadata HTTP/1.1
Host: 
Accept: */*
200

Returns the full withdrawal metadata for each currency and its supported networks.

{
  "ETH": {
    "ETH": {
      "fee": "0.0032",
      "minAmount": "0.0125",
      "maxAmount": "116",
      "precision": 8,
      "available": true
    },
    "BSC": {
      "fee": "0.00012",
      "minAmount": "0.00035",
      "maxAmount": "116",
      "precision": 8,
      "available": false
    }
  },
  "USDC": {
    "ETH": {
      "fee": "15",
      "minAmount": "62.5",
      "maxAmount": "280000",
      "precision": 6,
      "available": true
    },
    "BSC": {
      "fee": "0.3",
      "minAmount": "12.5",
      "maxAmount": "280000",
      "precision": 8,
      "available": true
    },
    "TRX": {
      "fee": "1",
      "minAmount": "12.5",
      "maxAmount": "280000",
      "precision": 6,
      "available": true
    }
  },
  "LINK": {
    "ETH": {
      "fee": "0.67",
      "minAmount": "1.675",
      "maxAmount": "19200",
      "precision": 8,
      "available": true
    }
  },
  "XLM": {
    "XLM": {
      "fee": "0.02",
      "minAmount": "31.25",
      "maxAmount": "2240000",
      "precision": 7,
      "available": true
    }
  },
  "LTC": {
    "LTC": {
      "fee": "0.001",
      "minAmount": "0.0025",
      "maxAmount": "4000",
      "precision": 8,
      "available": true
    }
  },
  "BCH": {
    "BCH": {
      "fee": "0.00064",
      "minAmount": "0.0025",
      "maxAmount": "1200",
      "precision": 8,
      "available": true
    }
  },
  "BTC": {
    "BTC": {
      "fee": "0.00034",
      "minAmount": "0.001875",
      "maxAmount": "7.2",
      "precision": 8,
      "available": true
    }
  },
  "XRP": {
    "XRP": {
      "fee": "0.2",
      "minAmount": "18.75",
      "maxAmount": "480000",
      "precision": 6,
      "available": true
    }
  }
}