Typeform

People-Friendly Forms and Surveys

Go to site
Explore
/
Apps
/
Typeform

Typeform API Integrations

Build and run workflows using the Typeform 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

With the Typeform API, you can easily create beautiful, interactive forms that allow people to share their information with you in an engaging way. Here are some examples of what you can build with the Typeform API:

  • A contact form for your website that allows people to easily get in touch with you
  • An order form for your product or service that allows people to place orders easily and securely
  • A survey form that allows you to collect data and feedback from people
  • A registration form for your event or conference that allows people to sign up easily and securely
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: {
    typeform: {
      type: "app",
      app: "typeform",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.typeform.com/me`,
      headers: {
        Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
      },
    })
  },
})
Create a Form with Typeform API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Typeform
 
Try it
Send Message (Advanced) with Discord Webhook API on New Submission from Typeform API
Typeform + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on New Submission from Typeform API
Typeform + Google Sheets
 
Try it
Create a Form with Typeform API on New Item in Feed from RSS API
RSS + Typeform
 
Try it
Create a Form with Typeform API on New Message from Discord API
Discord + Typeform
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Create a Form with the Typeform API

Creates a form with its corresponing fields. See the docs here

 
Try it
Create an Image with the Typeform API

Adds an image in your Typeform account. See the docs here

 
Try it
Delete an Image with the Typeform API

Deletes an image from your Typeform account. See the docs here

 
Try it
Delete Form with the Typeform API

Select a form to be deleted. See the docs here.

 
Try it
Duplicate a Form with the Typeform API

Duplicates an existing form in your Typeform account and adds "(copy)" to the end of the title. See the docs here

 
Try it

Authentication

Typeform uses OAuth authentication. When you connect your Typeform account, Pipedream will open a popup window where you can sign into Typeform and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Typeform API.

Pipedream requests the following authorization scopes when you connect your account:

offlineaccounts:readforms:writeforms:readimages:writeimages:readthemes:writethemes:readresponses:readresponses:writewebhooks:readwebhooks:writeworkspaces:readworkspaces:write
OAuth Request Configurations:
  1. authorization
    GEThttps://api.typeform.com/oauth/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://api.typeform.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}
  3. refreshToken
    POSThttps://api.typeform.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&grant_type=refresh_token&refresh_token={{oauth.refresh_token}}