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. Currencies & Fees

Get exchange rates [crypto to fiat]

PreviousGet all currenciesNextGet exchange rates [fiat to fiat]

Last updated 6 months ago

Response example

{
	"ETH": {
		"EUR": "1467.8",
		"USD": "1741.1"
	},
	"BTC": {
		"EUR": "42798",
		"USD": "50770"
	},
	"XRP": {
		"EUR": "0.40227",
		"USD": "0.4772"
	}
}

Fetch deposit rates

get

Fetch the deposit rates for all specified crypto to settlement or display currency pair.

Query parameters
toCurrencyany of[]Required

The comma-separated quote settlement or display currencies used to produce the currency pairs.

string ยท enumOptionalPossible values:
or
string ยท enumOptionalPossible values:
Responses
200
Returns the available rates for the requested currency pairs.
application/json
get
GET /api/v1/exchange/rates/deposit?fromCurrency=BCH&toCurrency=AED HTTP/1.1
Host: 
Accept: */*
200

Returns the available rates for the requested currency pairs.

{
  "BTC": {
    "USDC": "30000.34"
  },
  "XRP": {}
}