Appearance
Typeform
Create forms, collect responses, and manage workspaces via the Typeform API.
| Detail | Value |
|---|---|
| Category | Productivity |
| Base URL | https://api.typeform.com |
| Authentication | Bearer Token |
| Endpoints | 5 |
| Connector key | typeform |
Using Typeform in a workflow
- Go to Connections and click New Connection.
- Pick Typeform from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /forms | List forms |
POST /forms | Create a form |
GET /forms/{formId} | Get a form |
GET /forms/{formId}/responses | List form responses |
GET /workspaces | List workspaces |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /forms
List forms
| Detail | Value |
|---|---|
| Operation ID | productivity.listForms |
| Method | GET |
| Path | /forms |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
search | query | string | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Typeform connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.listForms. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Typeform API reference.
POST /forms
Create a form
| Detail | Value |
|---|---|
| Operation ID | productivity.createForm |
| Method | POST |
| Path | /forms |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
title | string |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Typeform connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.createForm. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Typeform API reference.
GET /forms/{formId}
Get a form
| Detail | Value |
|---|---|
| Operation ID | productivity.getForm |
| Method | GET |
| Path | /forms/{formId} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
formId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Typeform connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.getForm. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Typeform API reference.
GET /forms/{formId}/responses
List form responses
| Detail | Value |
|---|---|
| Operation ID | productivity.listResponses |
| Method | GET |
| Path | /forms/{formId}/responses |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
formId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Typeform connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.listResponses. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Typeform API reference.
GET /workspaces
List workspaces
| Detail | Value |
|---|---|
| Operation ID | productivity.listWorkspaces |
| Method | GET |
| Path | /workspaces |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Typeform connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.listWorkspaces. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Typeform API reference.