SurveyMonkey is an online survey development platform that enables users to create, distribute, and analyze surveys for various purposes.
SurveyMonkey is an online survey development platform that enables users to create, distribute, and analyze surveys for various purposes. On Nagent, SurveyMonkey is exposed as a fully-configurable forms & surveys integration that any agent can call — 22 actions, and OAUTH2, API_KEY authentication. No code is required to wire SurveyMonkey into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use SurveyMonkey to automate the kinds of tasks forms & surveys teams previously handled manually. Concrete examples — each one is a single agent step in Nagent — include:
Every action and trigger is paired with a structured input/output schema (visible in the sections below), so when you wire SurveyMonkey into Helix — our agentic agent builder — the editor knows exactly what each step expects and produces. Configure once, deploy anywhere across your Nagent agents.
Every operation an agent can call against SurveyMonkey, with input parameters and output schema. Drop these into any step of an agent built in Helix.
SURVEY_MONKEY_CREATE_BULK_CONTACTSCreates multiple contacts in SurveyMonkey in a single API call. Use this action to efficiently add multiple contacts at once, optionally updating existing ones. Each contact requires first_name, last_name, and either email or phone_number. The response indicates which contacts succeeded, which were invalid, and which already existed. Requires 'contacts_write' OAuth scope.
Input parameters
Array of contact objects to create. Each contact must have first_name, last_name, and either email or phone_number.
Whether to update existing contacts with the same email or phone number. Defaults to false.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_CREATE_CONTACTCreates a new contact in SurveyMonkey. Contacts can be added to contact lists and used for email invitations. Use this action when you need to add a new contact to your SurveyMonkey account for survey distribution.
Input parameters
Contact email address. This is the primary identifier for the contact.
Contact's last name. Optional field for personalization.
Contact's first name. Optional field for personalization.
Custom field values keyed by field ID. Use field IDs (e.g., '1', '2') as keys and string values.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_CREATE_CONTACT_LISTCreates a new contact list in SurveyMonkey. Contact lists are used to organize contacts for sending survey invitations via email or SMS collectors. Use this action when you need to create a contact list before adding contacts and sending surveys. Returns the contact list ID and API URL for managing the list.
Input parameters
Name of the contact list to create. If not provided, defaults to 'New List'.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_CREATE_SURVEYCreates a new empty survey in SurveyMonkey with one empty page and no questions. Returns the survey ID and internal URLs for editing, previewing, and analyzing results — shareable collector URLs are not returned; use SURVEY_MONKEY_GET_COLLECTORS after creation to retrieve or manage those. The survey_id can be used with other actions to add questions, pages, or collectors. Finalize survey design before broad distribution, as modifying questions after distributing live links can invalidate prior responses. Example: "Create a survey titled 'Customer Satisfaction Survey'"
Input parameters
Title of the new survey. This will be displayed to survey respondents.
Whether to display SurveyMonkey branding footer in the survey. Defaults to true.
Survey language code in ISO 639-1 format. Defaults to 'en' (English). Examples: 'es' (Spanish), 'fr' (French), 'de' (German).
Optional internal nickname for the survey (not shown to respondents). Useful for organizing surveys.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_CREATE_SURVEY_FOLDERCreates a new survey folder in SurveyMonkey to organize surveys. Use when you need to create a folder for grouping related surveys.
Input parameters
The title/name of the survey folder to create. This will be used to organize and group related surveys.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_DELETE_SURVEYTool to delete a specific survey. Use when the survey ID is confirmed correct. Deletion is irreversible. Example prompt: "Delete survey '123456789'."
Input parameters
The unique identifier of the survey to be deleted.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_GET_BULK_CONTACTSTool to retrieve contacts in bulk from SurveyMonkey. Use when you need to fetch multiple contacts efficiently with pagination support.
Input parameters
Page number for pagination (default: 1)
Number of contacts to return per page (default: 50)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_GET_COLLECTORSTool to retrieve a list of collectors for a specific survey. Use when you need collector URLs, counts, and statuses. Survey creation does not return shareable links; use this tool to obtain collector URLs after creating a survey.
Input parameters
Partial match filter on collector name
Page number to return (default=1)
Additional fields to include per collector
The field to sort collectors by.
Filter collectors created before this datetime (YYYY-MM-DDTHH:MM:SS)
Resources per page (default=50)
Survey ID to retrieve collectors for
The sort order for results (ASC or DESC).
Filter collectors created after this datetime (YYYY-MM-DDTHH:MM:SS)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_GET_CONTACTSRetrieves a list of contacts from SurveyMonkey. Use this tool to fetch contacts that can be used for sending survey invitations. Contacts can be filtered by status (active, optout, bounced), searched by email or name, sorted by various fields, and paginated through using page/per_page parameters. Returns contact details including ID, email, names, phone numbers, and custom fields. Requires 'contacts_read' or 'contacts_write' OAuth scope.
Input parameters
Page number for pagination. Defaults to 1
Search query string to filter contacts
Filter contacts by status. Options: 'active' (default), 'optout', or 'bounced'
Field to sort by. Options: 'email' (default), 'first_name', 'last_name', or custom fields '1' through '6'
Number of contacts to return per page. Defaults to API default (typically 50)
Field to search in. Options: 'email', 'first_name', 'last_name', or custom fields '1' through '6'
Sort order. Options: 'ASC' (ascending) or 'DESC' (descending)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_GET_CURRENT_USERTool to retrieve the current authenticated user's account details including plan information. Use when you need to get information about the authenticated user's SurveyMonkey account.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_GET_GROUPSTool to retrieve a list of groups. Use after authentication when you need to enumerate or paginate through all groups in your SurveyMonkey account.
Input parameters
Page number to retrieve (1-based index).
Comma-separated list of additional fields to include in each group object, e.g., 'member_count'.
Number of groups to return per page.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_GET_RESPONSESTool to retrieve a paginated list of responses for a specific survey. Use when you need to browse or filter responses after confirming the survey ID. Iterate through all pages using `page` and `per_page` to avoid missing responses in large surveys.
Input parameters
Filter responses by IP address
Page number to return (default=1)
Filter responses by recipient's email
Filter responses by custom value associated with the response
Filter responses by status
Field to sort by
Number of responses per page (default=50)
Filter responses by recipient's last name
The unique identifier of the survey.
Filter responses by recipient's first name
Sort order
Filter responses created before this datetime (ISO 8601)
Filter responses with total time less than or equal to this value (in seconds)
Filter responses with total time greater than or equal to this value (in seconds)
Filter responses modified before this datetime (ISO 8601)
Filter responses by custom variables as key:value pairs
Filter responses created after this datetime (ISO 8601)
Unit for total_time_min and total_time_max
Filter responses modified after this datetime (ISO 8601)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_GET_SURVEY_DETAILSRetrieves comprehensive details and metadata for a specific survey by its ID. Returns survey configuration including title, language, question/page counts, response count, URLs for preview/edit/analyze/collect, navigation button text, and creation/modification timestamps. Use this to get detailed information about a survey after obtaining its ID from Get Surveys.
Input parameters
The unique identifier of the survey to fetch details for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_GET_SURVEY_DETAILS2Retrieves expanded survey details including all pages, questions, and answer options. Use when you need the complete survey structure with question IDs and answer option IDs for mapping responses.
Input parameters
The unique identifier of the survey to fetch expanded details for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_GET_SURVEY_RESPONSES_BULKTool to retrieve bulk survey responses with full question answers and response data. Use when you need to export or analyze detailed response data for a survey.
Input parameters
Survey ID to fetch bulk responses for
Page number to return (1-based index)
Filter responses by status: completed, partial, overquota, or disqualified
Number of responses per page (max 100)
Filter responses created before this datetime (ISO 8601 format)
Filter responses created after this datetime (ISO 8601 format)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_GET_SURVEYSTool to retrieve a paginated list of surveys. Use when you need to enumerate or paginate through all surveys. Results are capped at 100 per page (`per_page` max=100); iterate over all pages using `page` to avoid missing surveys on large accounts.
Input parameters
Page of resources to return (1-based index)
Search survey list by survey title (partial match)
Additional fields to include per survey or filter surveys. Fields: response_count, date_modified, date_created, question_count, page_count, category, language, folder_id. Filters: shared_with (surveys shared with you), shared_by (surveys you shared), owned (surveys you own)
Field to sort surveys by
Number of resources to return per page (max=100)
Filter to only return surveys in a specific folder
Sort order: ascending (ASC) or descending (DESC)
Filter surveys modified before this date (format: YYYY-MM-DDTHH:MM:SS)
Filter surveys modified after this date (format: YYYY-MM-DDTHH:MM:SS)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_GET_SURVEY_TRENDSTool to retrieve trend data for a survey showing answer counts for particular time periods. Use when you need to analyze response trends over time for survey questions. Not available for file_upload, slider, presentation, demographic, matrix_menu, or datetime question types.
Input parameters
Specifies the time period grouping for trend data (e.g., month, week, day)
The unique identifier of the survey to get trends for.
Filter responses by creation date end (ISO 8601 format: YYYY-MM-DDTHH:MM:SS)
Filter responses by modified date end (ISO 8601 format: YYYY-MM-DDTHH:MM:SS)
Filter responses by creation date start (ISO 8601 format: YYYY-MM-DDTHH:MM:SS)
Filter responses by modified date start (ISO 8601 format: YYYY-MM-DDTHH:MM:SS)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_LIST_AVAILABLE_LANGUAGESTool to retrieve all available languages for creating multilingual surveys. Use when you need to get language codes and names for survey creation or translation.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_LIST_BENCHMARK_BUNDLESTool to retrieve a list of benchmark bundles. Use when you need to enumerate available benchmark bundles for benchmarking survey results.
Input parameters
Page number to retrieve (1-based index).
Country code to filter benchmark bundles. Default is 'US'.
Number of benchmark bundles to return per page.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_LIST_CONTACT_FIELDSTool to retrieve a list of contact fields from SurveyMonkey. Use when you need to enumerate available contact fields that can be used for contact management and data collection.
Input parameters
Page number for pagination (default: 1).
Number of contact fields to return per page (default: 50, max: 50).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_LIST_CONTACT_LISTSTool to retrieve a list of contact lists from SurveyMonkey. Use this when you need to enumerate all contact lists in your account or find a specific list by name. Contact lists are collections of contacts that can be used for sending survey invitations.
Input parameters
Which page of resources to return. Defaults to 1
Number of contact lists to return per page
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SURVEY_MONKEY_LIST_WEBHOOKSTool to retrieve a list of webhooks from SurveyMonkey. Use when you need to view all configured webhooks or find a specific webhook by name.
Input parameters
Which page of resources to return. Defaults to 1
Number of webhooks to return per page. Defaults to 50
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
No publicly available marketplace agent is found using this tool yet. There are 54 agents privately built on Nagent that already use SurveyMonkey.
Build on Nagent
Connect SurveyMonkey to any Nagent agent in minutes — no API key management, no boilerplate. Just configure and deploy.
The five questions agent builders ask before adopting a new integration.
Open the External Integrations panel inside Nagent (app.nagent.ai/externalIntegration), find SurveyMonkey, and click "Connect Now." You'll authenticate with OAUTH2, API_KEY — Nagent handles credential storage and refresh automatically. Once connected, SurveyMonkey is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once SurveyMonkey is connected, you configure its 22 actions directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop SurveyMonkey steps into any workflow visually. Pick an action (e.g., one of those listed above), fill in the inputs (Helix knows the required vs. optional schema for each parameter), and connect it to upstream/downstream steps. Triggers run as the entry point of an agent, so when a SurveyMonkey event fires, the agent kicks off automatically.
Every SurveyMonkey action and trigger ships with a fully-typed schema — input parameters with name, type, required flag, and description, plus the output payload shape. The schemas are documented in the sections above. Helix uses these schemas to validate your configuration at build time and to type-check the data flowing between steps.
Yes. While SurveyMonkey ships with 22 pre-built forms & surveys actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching SurveyMonkey together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build SurveyMonkey-based workflows tailored to your business.