Skip to main content
GET
Currency conversion
Convert a specific amount from one currency to another using the latest available exchange rates. This endpoint performs real-time currency conversion calculations, making it easy to handle cross-currency transactions in your application. The returned data includes the timestamp of the conversion rate used, ensuring transparency for financial calculations.
Note on Precision: Some currency pairs are returned with a multiplier (e.g., 100 or 1000) to ensure high precision.

Query parameters

string
required
The 3-letter currency code of the source currency (e.g., USD, EUR). See the list of available pairs.
string
required
The 3-letter currency code of the target currency (e.g., GBP, JPY). See the list of available pairs.
decimal
required
The value to convert.

Response

object
Metadata about the conversion rate used.
string
The Unix timestamp (epoch) when the rate was collected.
string
The exchange rate used for this conversion.
object
Echoes the parameters used in the request.
string
Source currency code.
string
Target currency code.
decimal
Amount converted.
string
The calculated converted amount.