Consistent, reliable exchange rate data and currency conversion for your business.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
open_exchange_rates: {
type: "app",
app: "open_exchange_rates",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://openexchangerates.org/api/usage.json`,
params: {
app_id: `${this.open_exchange_rates.$auth.app_id}`,
},
})
},
})
Convert any money value from one currency to another. See the documentation
Get the latest exchange rates available. See the documentation
Open Exchange Rates uses API keys for authentication. When you connect your Open Exchange Rates account, Pipedream securely stores the keys so you can easily authenticate to Open Exchange Rates APIs in both code and no-code steps.
First, open an account on the Open Exchange Rate dashboard.
Then confirm your email address with the link sent to your account's email address.
Then, copy and paste the App ID into the field below.