import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
apiary: {
type: "app",
app: "apiary",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.apiary.io/me`,
headers: {
Authorization: `Bearer ${this.apiary.$auth.token}`,
},
})
},
})
Apiary uses API keys for authentication. When you connect your Apiary account, Pipedream securely stores the keys so you can easily authenticate to Apiary APIs in both code and no-code steps.
You can manage your authorization tokens at the tokens page.