Translate Typeform responses into one English tracker
Every time someone submits your survey, we translate their open-text answers into English and log the whole response to a Google Sheet your team can read.
This is a deterministic, code-style workflow. Trigger it with a webhook that fires whenever a new response is submitted to my Typeform survey. Typeform emits a first-class outgoing webhook on each new submission, and the payload carries the submitted answers. If any answer data is missing from the webhook payload, fetch it with Typeform's Retrieve Responses operation using the form and response identifiers from the payload.
From the response, gather only the free-text (open-text) answers into an array of strings, preserving their order and remembering which question each one belongs to. Send that array in a single DeepL Translate Text call with target_lang set to EN and source_lang omitted so DeepL auto-detects the language. Read back both the translations and the detected_source_language that DeepL returns. DeepL accepts up to 50 text strings in one call, so batch all the open-text answers into that single request. Note that DeepL free-plan API keys end in ':fx' and must use the api-free.deepl.com host.
Then append exactly one row to my Google Sheets tracker using Append Values. The row should contain, in order: the submission timestamp, the detected source language, the original open-text answers, and their English translations. Pass multiple-choice, rating, and other closed answers through unchanged into their own columns; do not translate them.
Keep everything deterministic: translate only the open-text fields, leave every multiple-choice answer exactly as submitted, and always record the detected source language even when it is already English. One response in produces one row out.
Additional information
What does this prompt do?
- Watches your Typeform survey and runs the moment a new response comes in.
- Translates the free-text answers into English and detects which language each respondent wrote in.
- Adds one row to your Google Sheet with the submission time, the detected language, the original answers, and their English translations.
- Leaves multiple-choice answers untouched and always records the language, even when the response is already in English.
What do I need to use this?
- A Typeform account with the survey you want to track.
- A DeepL account for the translations (the free plan works).
- A Google account and a Google Sheet to collect the responses.
How can I customize it?
- Choose which survey questions get translated and which pass through unchanged.
- Point it at any Google Sheet and set the column order that suits your team.
- Switch the target language if your team reads something other than English.
Frequently asked questions
Does this work with free DeepL and free Typeform accounts?
What happens if someone answers in English?
Will it translate the multiple-choice answers too?
How fast does a new response show up in the sheet?
Can my whole team read every language in one place?
Related templates
Read every survey response, whatever language it's in.
Automatically translate and log multilingual form submissions so your whole team stays on the same page.