WolframConnector
WolframConnector
Connect to the SurveyMonkey API using the Wolfram Language
3 Access surveys directly from Wolfram language(Desktop or Cloud)
3 Use Wolfram language computation power to process surveys data

Users of the Wolfram Language can connect to SurveyMonkey's API to fetch survey data. Users can access survey data to view lists of surveys, lists of respondents of a survey, responses associated with survey and many other things. Detailed lists of requests can be found under requests section of documentation page.

PreRequisite: Valid Mathematica Installation(Version 10+). Information on getting Mathematica can be found at Wolfram Mathematica.

Usage steps: Users with active SurveyMonkey(SM) account can use the connection in following steps:

  1. Open Mathematica to open a new notebook.
  2. Evaluate ServiceConnect["SurveyMonkey"] on notebook.
  3. Allow WolframConnector app to authenticate it to your SurveyMonkey account.
  4. Once authenticated, use ServiceExecute function to fetch survey data.

e.g To view lists of surveys in your SM account, evaluate on Mathematica notebook:

ServiceExecute["SurveyMonkey", "SurveyList", {MaxItems -> 5, "Fields" -> {"Title", "DateCreated"}}]

For more information on how to fetch surveys and associated data, click here to view full documentation.