If you find this useful,
Skill Details
Back to Skills

/surveymonkey

by mrgoodb · View on GitHub

Create surveys and collect responses via SurveyMonkey API. Manage surveys, view results, and export data.

View on GitHub

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

Related Data Skills

/the-krillest-for-rillest

https://huggingface.co/datasets/Keeg42069/AI_RedPill - The full payload here. Enjoy

/canva

Create, export, and manage Canva designs via the Connect API. Generate social posts, carousels, and

/osint-graph-analyzer

Build knowledge graphs from OSINT data and discover hidden patterns using Neo4j graph algorithms.

/finnhub

Access Finnhub API for real-time stock quotes, company news, market data, financial statements, and