Apiary is an API service that allows you to create and host APIs. You can use Apiary to create APIs for your web applications, mobile apps, or any other type of app.
Some examples include:
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.