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 payments

Fetch deposit amounts metadata

Returns the minimum allowed deposit amount for each display currency or deposit currency.

PreviousGet payment dataNextCrypto withdrawals

Last updated 6 months ago

Response example

[
          "ETH" : {
                    "ETH" : {
                      "ETH" : "0.002177818914615500",
                      "EUR" : "5",
                      "GBP" : "4.20",
                      "USD" : "5.54"
                    },
                    "BSC" : {
                      "ETH" : "0.002177818914615500",
                      "EUR" : "5",
                      "GBP" : "4.20",
                      "USD" : "5.54"
                    }
                  },
           "BTC": {
                    "BTC": {
                      "BTC": "0.00009469",
                      "EUR": "5",
                      "GBP": "4.22",
                      "USD": "5.55"
                    }
                  }  
]

Fetch deposit metadata

get

Fetch deposit metadata like minimum deposit amounts per currency and network.

Responses
200
Returns deposit metadata like minimum deposit amounts per currency and network.
application/json
get
GET /api/v1/payment/deposits/crypto/metadata HTTP/1.1
Host: 
Accept: */*
200

Returns deposit metadata like minimum deposit amounts per currency and network.

{
  "ETH": {
    "ETH": {
      "ETH": "0.002177818914615500",
      "EUR": "5",
      "GBP": "4.20",
      "USD": "5.54"
    },
    "BSC": {
      "ETH": "0.002177818914615500",
      "EUR": "5",
      "GBP": "4.20",
      "USD": "5.54"
    }
  }
}