Platform for API Design, Development & Documentation
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})