Formspree

Online form service

Go to site
Explore
/
Apps
/
Formspree

Formspree API Integrations

Build and run workflows using the Formspree API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

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:

  • A contact form for your website
  • A feedback form for your customers
  • A survey for your users

Formspree makes it easy to gather data from your users, and the possibilities are endless!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Choose an API to Connect with Formspree API

1
-
12
of
1000+
apps by most popular

Authentication

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.