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 [any currency to any currency]

PreviousGet exchange rates [fiat to fiat]

Last updated 6 months ago

Response example

{
   "ETH":{
      "EUR":"2258.7",
      "USD":"2386.15"
   },
   "BTC":{
      "EUR":"30086.5",
      "USD":"31784"
   }
}

Fetch market rates

get

Fetch the market rates for all specified currency pairs.

Query parameters
Responses
200
Returns the available rates for the requested currency pairs.
application/json
get
GET /api/v1/exchange/rates/market?fromCurrency=BCH&toCurrency=BCH HTTP/1.1
Host: 
Accept: */*
200

Returns the available rates for the requested currency pairs.

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