Finrax API Documentation
DashboardResourcesMain
  • Introduction
  • Authorization
    • API Keys Management
    • Signature
    • Code snippets
  • Environments
  • Errors
  • Changelog
  • References
    • Crypto payments
      • ๐Ÿ”’Request crypto payment
      • ๐Ÿ”’Add payment details
      • ๐Ÿ”’Get payment data
      • Fetch deposit amounts metadata
    • Crypto withdrawals
      • Request withdrawal metadata
      • ๐Ÿ”“Get crypto withdrawal approval status
      • ๐Ÿ”’Request crypto withdrawal
        • National Identifier Types
        • Name Identifier Type
    • Wallet Addresses
      • Validate address
    • Businesses
      • ๐Ÿ”’Get business payments
      • ๐Ÿ”’Get business withdrawals
      • ๐Ÿ”’Get business balances
    • 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

Was this helpful?

  1. References
  2. Currencies & Fees

Get exchange rates [any currency to any currency]

PreviousGet exchange rates [fiat to fiat]

Last updated 9 months ago

Was this helpful?

{
   "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": {}
}