# Recipe Collect Form Responses

> Retrieve and review responses from a Google Form.

- Skill: `wadewarren/recipe-collect-form-responses` (Agent Skill)
- Install (CLI): `npx skillmds@latest add wadewarren/recipe-collect-form-responses`
- Raw SKILL.md: https://api.skillmd.com/api/skills/wadewarren/recipe-collect-form-responses/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: wadewarren (https://skillmd.com/u/wadewarren)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/wadewarren/recipe-collect-form-responses

---


# Check Form Responses

> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-forms`

Retrieve and review responses from a Google Form.

## Steps

1. Get the form ID from the Google Forms URL (the Google Forms API does not support listing forms — find the ID in the form's URL: `https://docs.google.com/forms/d/FORM_ID/edit`)
2. Get form details: `gws forms forms get --params '{"formId": "FORM_ID"}'`
3. Get responses: `gws forms forms responses list --params '{"formId": "FORM_ID"}' --format table`


