OANDA is a global leader in online multi-asset trading services, currency data, corporate payments and FX services.
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
What You Can Build With the OANDA API
The OANDA API allows developers to build a wide range of financial trading
applications. It provides APIs for Spot, FX, and CFD Trading, Historical
Currency Conversion, and Exchange Rates. With the tools and services offered by
OANDA, you can create the following types of programs and applications:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
oanda: {
type: "app",
app: "oanda",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-fxtrade.oanda.com/v3/accounts`,
headers: {
Authorization: `Bearer ${this.oanda.$auth.personal_token}`,
},
})
},
})
Python API on Pipedream offers developers to build or automate a variety of
tasks from their web and cloud apps. With the Python API, users are able to
create comprehensive and flexible scripts, compose and manage environment
variables, and configure resources to perform a range of functions.
By using Pipedream, you can easily:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}