1. Currency Exchange
Partner API
  • Getting Started
    • Introduction
    • Authentication
    • Business Use Cases
  • API References
    • Partner Operations
      • Crypto Deposits
        • Get Crypto Deposit Details
      • Crypto Withdrawal
        • Get Crypto Withdrawal Details
      • Currency Exchange
        • Get Rates
          GET
        • Create Lock
          POST
        • Get Exchange Details
          GET
      • Balances & History
        • Get Balances
        • Get Balance History
      • SEPA Transfers
        • Get SEPA Deposit Info
        • Get SEPA Deposit Contact List
        • Create a SEPA Transfer
        • Get SEPA Transfer Details
  • Integration
    • SDKs & Integration Guides
    • Transaction Processing
    • Error Handling
    • Rate Limiting
    • Webhooks
      • User & KYC Webhooks
        • User Balance Generation Webhook
        • KYC File Added Webhook
        • POA Verification Status Webhook
        • KYC Verification Status Webhook
        • Create Wallet Webhook
        • High Risk KYC Verification Webhook
      • Transfers & Payments Webhooks
        • Internal Transfer Webhook
        • IBAN Status Webhook
        • Partner SEPA Transfer Webhook
        • User SEPA Transfer Webhook
        • SEPA Deposit Webhook
        • Crypto Withdrawal Webhook
        • Crypto Deposit Webhook
        • Exchange Webhook
        • Card Transaction Webhook
        • Order Status Webhook
        • Payment Link Webhook
      • Card Webhooks
        • Card 3DS Code Webhook
        • Card Activation Code Webhook
  • Reference
    • Supported Countries
    • Supported Currencies
    • Fees
    • FAQ
    • Changelog
    • Support
  1. Currency Exchange

Get Rates

Testing Env
https://stage-api.fintegence.io
Testing Env
https://stage-api.fintegence.io
GET
/v1/exchange/rates
Retrieves real-time exchange rates for all supported fiat and cryptocurrencies relative to EUR.
This endpoint provides dynamic market rates updated frequently to reflect real-time market fluctuations.

Response Structure#

The response returns a dictionary where each key is an uppercase currency ticker (e.g., BTC, USD, SOL) and its value is the current exchange rate expressed against EUR:
1 EUR = [rate] [CURRENCY] (e.g., "BTC": 56390.24 means 1 EUR = 56,390.24 BTC-equivalent / 1 BTC rate relative to EUR).

Use this endpoint to:
display up-to-date market prices and conversion rates,
calculate estimated transaction values prior to execution,
present real-time rates before requesting an execution quote.
Informational Only
Calling this endpoint does not reserve or lock an exchange rate for a trade. Rates are dynamic and intended strictly for preview purposes.
To reserve a rate for a specific operation, use Retrieve Exchange Rate and Create a Lock.

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or

Responses

🟢200Success
application/json
Bodyapplication/json

🟠401Access Denied
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://stage-api.fintegence.io/v1/exchange/rates' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Success
{
    "BNB": 521.9813391280026,
    "BONK": 0.0000022180775270663336,
    "BTC": 56390.24520862155,
    "CAD": 0.6200400669891288,
    "DOGE": 0.06056330404505999,
    "ETH": 1666.91772456203,
    "EUR": 1,
    "FLOKI": 0.000018653058079689674,
    "LDO": 0.25540760767198994,
    "LTC": 39.334426044332346,
    "PEPE": 0.0000025109376723497537,
    "POL": 0.06687091375662049,
    "PYUSD": 0.8653837798581624,
    "SHIB": 0.000004059926300803522,
    "SOL": 66.52282603233432,
    "TON": 1.156,
    "TRUMP": 1.2981816476930916,
    "USD": 0.8654501898797717,
    "USDC": 0.8654160888516711,
    "USDT": 0.8648916086729149,
    "WIF": 0.1442047811555368,
    "WOO": 0.010053791028783414,
    "XRP": 0.8960926854023409,
    "ZND": 0.000084405713836902
}
Previous
Currency Exchange
Next
Create Lock
Built with