62★by mrgoodb
surveymonkey – OpenClaw Skill
surveymonkey is an OpenClaw Skills integration for coding workflows. Create surveys and collect responses via SurveyMonkey API. Manage surveys, view results, and export data.
62 stars3.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding
Skill Snapshot
| name | surveymonkey |
| description | Create surveys and collect responses via SurveyMonkey API. Manage surveys, view results, and export data. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/surveymonkey |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/surveymonkey |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
277 BSKILL.md
1.8 KBSKILL.md
name: surveymonkey description: Create surveys and collect responses via SurveyMonkey API. Manage surveys, view results, and export data. metadata: {"clawdbot":{"emoji":"📋","requires":{"env":["SURVEYMONKEY_ACCESS_TOKEN"]}}}
SurveyMonkey
Survey and feedback platform.
Environment
export SURVEYMONKEY_ACCESS_TOKEN="xxxxxxxxxx"
List Surveys
curl "https://api.surveymonkey.com/v3/surveys" \
-H "Authorization: Bearer $SURVEYMONKEY_ACCESS_TOKEN"
Get Survey Details
curl "https://api.surveymonkey.com/v3/surveys/{survey_id}/details" \
-H "Authorization: Bearer $SURVEYMONKEY_ACCESS_TOKEN"
Get Responses
curl "https://api.surveymonkey.com/v3/surveys/{survey_id}/responses/bulk" \
-H "Authorization: Bearer $SURVEYMONKEY_ACCESS_TOKEN"
Create Survey
curl -X POST "https://api.surveymonkey.com/v3/surveys" \
-H "Authorization: Bearer $SURVEYMONKEY_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"title": "Customer Feedback"}'
Add Page to Survey
curl -X POST "https://api.surveymonkey.com/v3/surveys/{survey_id}/pages" \
-H "Authorization: Bearer $SURVEYMONKEY_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"title": "Page 1"}'
Add Question
curl -X POST "https://api.surveymonkey.com/v3/surveys/{survey_id}/pages/{page_id}/questions" \
-H "Authorization: Bearer $SURVEYMONKEY_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"family": "single_choice",
"subtype": "vertical",
"headings": [{"heading": "How satisfied are you?"}],
"answers": {"choices": [{"text": "Very satisfied"}, {"text": "Satisfied"}, {"text": "Not satisfied"}]}
}'
Links
- Dashboard: https://www.surveymonkey.com
- Docs: https://developer.surveymonkey.com/api/v3/
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 surveymonkey?
Run openclaw add @mrgoodb/surveymonkey in your terminal. This installs surveymonkey 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/surveymonkey. Review commits and README documentation before installing.
