Currency Exchange Endpoint
The Currency Exchange endpoint allows you to get the exchange of any local currency compared against USD
Currency Exchange
GET
api-stg.onekeypayments.com/v3/exchange_rates?country={country}&amount={amount}
The exchange_rates
endpoint allow you to get the exchange of any currency compared against USD.
Query Parameters
Name | Type | Description |
---|---|---|
country | string | Country ISO code in whose local currency the amount will be converted to. |
amount | number | Amount to convert in USD. If none is specified, |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | "Bearer " + Read-Only API Key |
Please find all the country codes in the Countries Specifications section.
Description
The currency exchange endpoint allows you to check the exchange of any currency against USD.
Request
In order to start using the Currency Exchange endpoint, you need to:
Send the request with GET method.
Specify a valid country code in the request as QUERY PARAMS.
Optionally, you can send the amount in USD you want to convert. Otherwise we will return the exchange for USD 1.
Send the Authorization header with your read-only API Key as Bearer as follows:
Authorization: Bearer your_read_only_key_here
Example request
Example Response
Response fields
Field name | Format | Description |
| Number | Currency exchange |
| String | Currency used for the conversion |
| Number | Amount resulting from multiplying the |
Last updated