Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Productivity / Google / Google Forms API
Google Forms API logo

Google Forms API

Browse all Google APIs
✓ Official Vendor SpecProductivityForms Surveysoauth210 EndpointsREST

For Agents

Create Google Forms, modify their structure with batch updates, read submitted responses, and subscribe to response notifications. Suited for agents that automate intake, surveys, or feedback collection.

Use for: Create a new Google Form with a set of questions, Add a multiple-choice question to an existing form, Retrieve all responses for a feedback form, Get a single form response by id

Not supported: Does not handle response editing, payment collection, or signature workflows — use Forms for survey and intake creation only.

The Google Forms API lets developers create, retrieve, and modify Google Forms and read their responses programmatically. It supports batch updates that change form structure, items, and settings in a single transaction, plus a watch system that notifies an external endpoint when responses arrive. This API turns Forms into a building block for survey workflows, intake systems, and data collection automations.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Google Forms API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Google Forms API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Google Forms API.

Create a new Google Form with a title and items

Mutate form structure and items atomically with forms:batchUpdate

Retrieve a form's full definition and metadata

List all responses to a form with pagination

Get a single response by id for processing

Subscribe to response and schema-change events with watches

Renew an existing watch before it expires

Use Cases

Patterns agents use Google Forms API for, with concrete tasks.

★ Programmatic Form Creation for Intake Workflows

Operations and HR teams often need to spin up a structured intake form per project, candidate, or vendor. The Forms API supports creating a form and then using batchUpdate to add sections, questions, and validation in a single atomic call. This lets a backend service generate consistent, branded forms on demand instead of asking staff to copy templates by hand.

Call POST /v1/forms with the title 'Vendor Onboarding', then POST /v1/forms/{formId}:batchUpdate with createItem requests for vendor name, contact email, and tax id questions.

Real-Time Response Processing

Survey processing pipelines need to react to each new submission. The watches resource lets an application register a Cloud Pub/Sub topic to receive a push notification when responses arrive or the form schema changes. Combined with responses.get on the response id, this enables real-time enrichment, ticket creation, or downstream notification.

Call POST /v1/forms/{formId}/watches with eventType RESPONSES and a Pub/Sub topic, then on each notification call GET /v1/forms/{formId}/responses/{responseId}.

Bulk Response Export for Analysis

Research and analytics teams want to export all responses from a form into a data warehouse. The list responses endpoint paginates through every submission and returns answers keyed by question id, which can be joined with the form definition from forms.get to produce a flat table for analysis.

Call GET /v1/forms/{formId}/responses, paginate with pageToken, and write each response to a data warehouse keyed by responseId.

Agent-Built Surveys

An AI assistant can generate a survey for a user's described intent, then provision the matching Google Form via Jentic. The agent searches for the create form and batch update operations, loads their schemas, and executes them so the user receives a shareable form URL within seconds. The agent never sees the user's underlying OAuth credentials.

Use Jentic to search 'create a google form', load the create and batchUpdate schemas, and execute them to provision a survey from an agent-generated question list.

Key Endpoints

10 endpoints — the google forms api lets developers create, retrieve, and modify google forms and read their responses programmatically.

METHOD

PATH

DESCRIPTION

POST

/v1/forms

Create a new Google Form

GET

/v1/forms/{formId}

Get a form's definition

POST

/v1/forms/{formId}:batchUpdate

Apply a batch of structural updates

GET

/v1/forms/{formId}/responses

List responses for a form

POST

/v1/forms/{formId}/watches

Subscribe to response notifications

POST

/v1/forms/{formId}:setPublishSettings

Update publish settings for a form

POST

/v1/forms

Create a new Google Form

GET

/v1/forms/{formId}

Get a form's definition

POST

/v1/forms/{formId}:batchUpdate

Apply a batch of structural updates

GET

/v1/forms/{formId}/responses

List responses for a form

POST

/v1/forms/{formId}/watches

Subscribe to response notifications

POST

/v1/forms/{formId}:setPublishSettings

Update publish settings for a form

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

OAuth refresh tokens are stored encrypted in the Jentic vault. Agents receive scoped, short-lived access tokens for the requested forms scopes only.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'create a google form' or 'list form responses') and Jentic returns the matching operation with its batchUpdate or response request schema.

Time to first call

Time to first call

Direct integration: 1-2 days for OAuth, batchUpdate request shape, and Pub/Sub watch wiring. Through Jentic: under 30 minutes — search, load, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Google Sheets API

→

Spreadsheet API often used as a destination for Forms responses.

Use Sheets when responses must be analysed, charted, or reformatted; Forms API for the form definition itself.

Complementary

Google Drive API

→

Manages the Drive container that holds the form file.

Use Drive to share, move, or set permissions on the form file; Forms API for content edits.

Complementary

Google Calendar API

→

Schedule events triggered from form responses, such as interview slots.

Pair with Forms when a submission should generate a calendar event.

FAQs

Specific to using Google Forms API through Jentic.

What authentication does the Google Forms API use?

It uses Google OAuth 2.0 with forms.body and forms.responses.readonly scopes. Through Jentic, refresh tokens are stored encrypted in the vault and agents only see scoped, short-lived bearer tokens.

Can I add multiple-choice questions to a form with this API?

Yes. Use POST /v1/forms/{formId}:batchUpdate with a createItem request whose questionItem.question.choiceQuestion.type is RADIO or CHECKBOX and supply the option list.

What are the rate limits for the Google Forms API?

Google enforces standard per-user and per-project quotas, typically around 60 read requests per minute per user with similar write limits. Quota errors return HTTP 429 and should be retried with backoff.

How do I get notified when a new response arrives through Jentic?

Search Jentic for 'subscribe to google forms responses', load the schema for POST /v1/forms/{formId}/watches, and execute it with eventType RESPONSES and your Cloud Pub/Sub topic to receive push notifications on each submission.

Is the Google Forms API free?

Yes, the Forms API itself has no cost. Standard Google OAuth verification rules apply for apps requesting restricted scopes.

Can I edit responses through this API?

No. Responses are read-only via the API. You can list and get responses, but updating answers must be done by the respondent through the form itself.

GET STARTED

Start building with Google Forms API

Explore with Jentic
View OpenAPI Document