Currency Conversion API
Note: This API converts between fiat currencies. For crypto-to-fiat conversions, use the Crypto Price API instead.
From 5,079 users
Applications using this API
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 216ms | 242ms | 313ms | 599ms | 1032ms |
Similar APIs
Didn't find what you were looking for? Suggest an improvement
/v1/convertcurrency GET
https://api.api-ninjas.com/v1/convertcurrency
Converts an existing currency and amount into a new currency. This API is not suitable for live trading or high-frequency trading.
Parameters
haverequiredCurrency you currently hold. Must be 3-character currency code (e.g.
USD).wantrequiredCurrency you want to convert to. Must be 3-character currency code (e.g.
USD).amountrequiredAmount of currency to convert.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
A JSON object with the following fields or an error if the request is unsuccessful.
old_amountThe original amount to convert (e.g.
5000).old_currencyThe original currency code (e.g.
GBP).new_amountThe converted amount in the new currency (e.g.
9559.32).new_currencyThe new currency code (e.g.
AUD).timestampUnix timestamp (in seconds) indicating the time at which the exchange rate used for the conversion was applied.
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/convertcurrency?have=GBP&want=AUD&amount=5000Headers
X-Api-KeyLog in or sign up to get your API KeySample Response
Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/convertcurrency?have=GBP&want=AUD&amount=5000" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.