Typeform
An InTouch Hub tool that talks to the official Typeform REST API
(https://api.typeform.com) to manage forms and pull their responses. Standard
library only — no external dependencies.
What it does
Authenticates with a Typeform personal access token (Authorization: Bearer <token>)
and performs one operation per run. The raw JSON the API returns is published as
result, and the HTTP status code as status.
Operations
| operation | API call | Purpose |
|---|---|---|
list_forms |
GET /forms |
List your forms (supports search, paging). |
retrieve_form |
GET /forms/{form_id} |
Get a single form's full definition. |
list_responses |
GET /forms/{form_id}/responses |
Retrieve submitted responses for a form. |
create_form |
POST /forms |
Create a new form (write). |
Inputs
apiKey(required) — Typeform personal access token.operation(required) — one of the operations above.formId— required forretrieve_formandlist_responses.search,workspaceId,page,pageSize— optional filters forlist_forms.since,until,pageSize— optional filters forlist_responses(ISO 8601 timestamps).title(required forcreate_form),fields— optional JSON array of field objects.
Outputs
result— the API response body as a JSON string.status— the HTTP status code as a string (e.g.200,201,401).
apiKey setup
- Sign in to Typeform and open Settings → Personal tokens
(
https://admin.typeform.com/account#/section/tokens). - Click Generate a new token, give it the scopes you need
(e.g.
forms:read,forms:write,responses:read), and copy the value. - Pass that token as the
apiKeyinput. It is sent asAuthorization: Bearer <token>on every request.
For EU-hosted accounts swap the base URL to https://api.eu.typeform.com.
Examples
List the first 50 forms whose title contains "feedback":
apiKey: tfp_xxxxxxxxxxxxxxxxxxxxxxxxx
operation: list_forms
search: feedback
pageSize: 50
Retrieve every response submitted to form u6nXL7 since June 1st:
apiKey: tfp_xxxxxxxxxxxxxxxxxxxxxxxxx
operation: list_responses
formId: u6nXL7
since: 2026-06-01T00:00:00Z