6.4k★by mrgoodb
typeform – OpenClaw Skill
typeform is an OpenClaw Skills integration for data analytics workflows. Create and manage forms, surveys, and quizzes via Typeform API. Retrieve responses and analytics.
6.4k stars7.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics
Skill Snapshot
| name | typeform |
| description | Create and manage forms, surveys, and quizzes via Typeform API. Retrieve responses and analytics. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/typeform |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/typeform |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
269 BSKILL.md
1.5 KBSKILL.md
name: typeform description: Create and manage forms, surveys, and quizzes via Typeform API. Retrieve responses and analytics. metadata: {"clawdbot":{"emoji":"📝","requires":{"env":["TYPEFORM_API_TOKEN"]}}}
Typeform
Forms and surveys.
Environment
export TYPEFORM_API_TOKEN="tfp_xxxxxxxxxx"
List Forms
curl "https://api.typeform.com/forms" \
-H "Authorization: Bearer $TYPEFORM_API_TOKEN"
Get Form Details
curl "https://api.typeform.com/forms/{form_id}" \
-H "Authorization: Bearer $TYPEFORM_API_TOKEN"
Get Responses
curl "https://api.typeform.com/forms/{form_id}/responses" \
-H "Authorization: Bearer $TYPEFORM_API_TOKEN"
Get Response Count
curl "https://api.typeform.com/forms/{form_id}/responses?page_size=1" \
-H "Authorization: Bearer $TYPEFORM_API_TOKEN" | jq '.total_items'
Create Form
curl -X POST "https://api.typeform.com/forms" \
-H "Authorization: Bearer $TYPEFORM_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"title": "Feedback Survey",
"fields": [
{"type": "short_text", "title": "What is your name?"},
{"type": "rating", "title": "How would you rate us?", "properties": {"steps": 5}}
]
}'
Delete Response
curl -X DELETE "https://api.typeform.com/forms/{form_id}/responses?included_response_ids={response_id}" \
-H "Authorization: Bearer $TYPEFORM_API_TOKEN"
Links
- Dashboard: https://admin.typeform.com
- Docs: https://developer.typeform.com
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install typeform?
Run openclaw add @mrgoodb/typeform in your terminal. This installs typeform into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/typeform. Review commits and README documentation before installing.
