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 [fiat to fiat]

PreviousGet exchange rates [crypto to fiat]NextGet exchange rates [any currency to any currency]

Last updated 9 months ago

Was this helpful?

{
	"USD": {
		"USD": "1",
		"CHF": "0.935074"
	},
	"EUR": {
		"USD": "1.186102",
		"CHF": "1.109093"
	},
	"GBP": {
		"USD": "1.38394",
		"CHF": "1.294086"
	}
}

Fetch fiat rates

get

Fetch the fiat rates for all specified fiat currency pairs. The rates are updated every 5 minutes.

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

Returns the available rates for the requested currency pairs.

{
  "EUR": {
    "EUR": "1",
    "USD": "1.078738",
    "BGN": "1.957527"
  },
  "USD": {
    "EUR": "0.927009",
    "USD": "1",
    "BGN": "1.814645"
  },
  "GBP": {
    "EUR": "1.164075",
    "BGN": "2.278709"
  }
}