Formspree is a great way to build simple forms and gather data from users. Here are some examples of what you can build using the Formspree API:
Formspree makes it easy to gather data from your users, and the possibilities are endless!
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
formspree: {
type: "app",
app: "formspree",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://formspree.io/api/0/forms/${this.formspree.$auth.hash_id}/submissions`,
headers: {
Authorization: `Bearer ${this.formspree.$auth.api_key}`,
},
})
},
})
Formspree uses API keys for authentication. When you connect your Formspree account, Pipedream securely stores the keys so you can easily authenticate to Formspree APIs in both code and no-code steps.