Get Fiat Exchange Rates

Get the current exchange rate for exchanging fiat/crypto assets.

We support all major fiat currencies. Rates are obtained from reliable sources and updated frequently. For the full list of supported currencies, refer to the Supported Fiat Currencies page.

By default, the base pair (the target asset) is USD. When obtaining the exchange rate for a fiat (for example, INR), the value returned by the API expresses the amount of USD that can be currently exchanged into 1 INR.

📘

Get Exchange Rate by Symbol (Popular)

GET /v4/data/rate/symbol
Fetch the current exchange rate for a single crypto or fiat asset.
Explore Docs →

Example Request

curl --location 'https://api.tatum.io/v4/data/rate/symbol?symbol=USD&basePair=INR' \
--header 'x-api-key: YOUR_API_KEY'

Example Response

{  
  "value": "0.01126970",  
  "basePair": "USD",  
  "timestamp": 1759480745000,  
  "source": "Fixer.io",  
  "symbol": "INR"  
}  

Notes

  • Use this endpoint to get real-time fiat exchange rates.
  • Base pair defaults to EUR if not specified.
  • Combine with other endpoints to build portfolio or conversion tools.