I'm using Typeforms(not embedded mode) and looking for a way to retrieve form data. I tested many ways and none worked. There are a couple of solution about embed mode like: Retrieve typeform form data in embed mode
But this doesn't work for me. Does anyone know how I can capture form field values at submission? I don't want to pass this information in the query string, I'm looking for another solution. Here is the page that I'm working on: https://techobloc1.pro.typeform.com/to/teQj56wI
Thank you
You can use Typeform Responses API to retrieve the response. If you want to process data on each submission Typeform Webhooks API will be more suitable.
If you want to execute custom client-side code on submit that only possible for embedded forms (using the
onSubmithandler as explained in the other StackOverflow question).I would suggest to embed your typeform. Then you can get the response ID in
onSubmithandler, pass that to your own API endpoint and use the ID to retrieve specific response via Responses API. I wrote a blog post about this approach: Integrate Typeform with Next.js