typeform
Create and manage forms, surveys, and quizzes via Typeform API. Retrieve responses and analytics.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/mrgoodb/typeformTypeform
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
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-mrgoodb-typeform": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
smartsheet
Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows.
onelogin
Manage users and apps via OneLogin API. Handle SSO and identity management.
google-sheets
Read and write Google Sheets data. Create spreadsheets, update cells, and manage worksheets via Sheets API.
postmark
Send transactional emails with high deliverability via Postmark API. Manage templates, track bounces, and view analytics.
loom
Manage Loom video recordings - list, share, and get analytics via Loom API.