Using the Grist API, you can build applications that can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
grist: {
type: "app",
app: "grist",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://docs.getgrist.com/api/orgs`,
headers: {
Authorization: `Bearer ${this.grist.$auth.api_key}`,
},
})
},
})
Grist uses API keys for authentication. When you connect your Grist account, Pipedream securely stores the keys so you can easily authenticate to Grist APIs in both code and no-code steps.
To retrieve your API key,