Currency Converter API
Unlock Real-Time currency conversion functionality for over 160 currencies
Need something else? -
1{
2 "status": "success",
3 "data": {
4 "from": "USD",
5 "to": "CNY",
6 "amountToConvert": 1337,
7 "convertedAmount": 9383.66765
8 }
9}
Join the 3000+ developers and businesses accross 70+ countries that trust us to deliver
Interactive Documentation
Use our interactive documentation and code generation to get going in seconds
GET/v1/convert
This endpoint makes an HTTP GET request to convert an amount from one currency to another. The request URL includes parameters for the source currency (from), target currency (to), and the amount to be converted.
Header(s)
x-api-key required
Value should be your API Key- get one here
Query Parameter(s)
fromrequired
From currency input
torequired
To currency input
amountrequired
Amount to convert input
Example Request
- C#
- Java
- JavaScript
- NodeJs
- PHP
- Python
- Axios
- Native
- Request
- Unirest
Loading...
GET/v1/supported-currencies
This HTTP GET request retrieves a list of available currencies.
Header(s)
x-api-key required
Value should be your API Key- get one here
Query Parameter(s)
searchoptional
Search avaliable currencies that are supported using codes or names
Example Request
- C#
- Java
- JavaScript
- NodeJs
- PHP
- Python
- Axios
- Native
- Request
- Unirest
Loading...