openclaw / typeform
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/typeform && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/4341" && unzip -o skill.zip -d .claude/skills/typeform && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/typeform/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Create and manage forms, surveys, and quizzes via Typeform API. Retrieve responses and analytics.
0 views
0 installs
Skill Content
---
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
```bash
export TYPEFORM_API_TOKEN="tfp_xxxxxxxxxx"
```
## List Forms
```bash
curl "https://api.typeform.com/forms" \
-H "Authorization: Bearer $TYPEFORM_API_TOKEN"
```
## Get Form Details
```bash
curl "https://api.typeform.com/forms/{form_id}" \
-H "Authorization: Bearer $TYPEFORM_API_TOKEN"
```
## Get Responses
```bash
curl "https://api.typeform.com/forms/{form_id}/responses" \
-H "Authorization: Bearer $TYPEFORM_API_TOKEN"
```
## Get Response Count
```bash
curl "https://api.typeform.com/forms/{form_id}/responses?page_size=1" \
-H "Authorization: Bearer $TYPEFORM_API_TOKEN" | jq '.total_items'
```
## Create Form
```bash
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
```bash
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