The Google Forms API lets you retrieve form content, settings and metadata, and the end-user form responses. This page describes how to perform these tasks.
Before you begin
Perform the following tasks before proceeding with the tasks on this page:
- Complete authorization/authentication and credentials setup in the Early Adopter Program instructions.
Retrieve form contents and metadata
To retrieve the content, settings, and metadata of a form, call the
forms.get()
method with the
form ID.
Python
Node.js
Retrieve all form responses
To retrieve all of the responses from a form, call the
forms.responses.list()
method with the form ID.
Python
Node.js
Retrieve a single form response
To retrieve a specific response from a form, call the
forms.responses.get()
method with the form ID and the response ID.