Is there a quicker way to download result of many forms? | Community
Skip to main content
Answered

Is there a quicker way to download result of many forms?

  • February 9, 2023
  • 5 replies
  • 349 views

  • Explorer
  • 1 reply

So boring when you have many forms to download, please make this quicker: potential solution described in video!

 

 

Best answer by jeremielp

You can do that with the API.

 

1) Retrieve all forms that interest you (by date / query / workspace...) :

GET https://api.typeform.com/forms
Doc: https://www.typeform.com/developers/create/reference/retrieve-forms/

 

2) Loop through all form IDs and use these IDs to download responses to each form

GET https://api.typeform.com/forms/{form_id}/responses
Doc: https://www.typeform.com/developers/responses/reference/retrieve-responses/

 

3) Arrange the data the way you need for your analysis.

View original

5 replies

Forum|alt.badge.img+5
  • Community Wizard
  • 127 replies
  • Answer
  • February 9, 2023

You can do that with the API.

 

1) Retrieve all forms that interest you (by date / query / workspace...) :

GET https://api.typeform.com/forms
Doc: https://www.typeform.com/developers/create/reference/retrieve-forms/

 

2) Loop through all form IDs and use these IDs to download responses to each form

GET https://api.typeform.com/forms/{form_id}/responses
Doc: https://www.typeform.com/developers/responses/reference/retrieve-responses/

 

3) Arrange the data the way you need for your analysis.


Liz
Community Team
Forum|alt.badge.img+5
  • Tech Community Advocate
  • 14840 replies
  • February 17, 2023

Hi @liv Were you able to use the suggestion above? Let us know how it went!


  • Navigating the Land
  • 1 reply
  • July 5, 2023

@jeremielp @Liz - Is there any way on the platform where we can download all responses from multiple typeforms in a single click?


Liz
Community Team
Forum|alt.badge.img+5
  • Tech Community Advocate
  • 14840 replies
  • July 5, 2023

Hi @Romil28 In the builder, we don’t have this option, but I’d definitely suggest using the Responses API!


  • Navigating the Land
  • 1 reply
  • November 27, 2024

Did anyone figure out how to do this without using API?