SurveyMonkey is a leading online survey development cloud-based software. Founded in 1999 by Ryan Finley, its core purpose is to help individuals and organizations create, send, and analyze surveys. It allows users to gather feedback, opinions, and insights from a specific audience for various purposes like market research, customer satisfaction, and employee engagement. The platform is known for its user-friendly interface and powerful features that make survey creation accessible to everyone, from students to large enterprises. The company is headquartered in San Mateo, California, and has grown to become one of the most popular survey platforms globally, serving millions of users.
SurveyMonkey offers a wide range of features designed to facilitate the entire survey process from creation to analysis.
SurveyMonkey offers several pricing tiers to suit different user needs, from individuals to large organizations.
SurveyMonkey offers a Basic plan which is free forever. This plan allows you to create an unlimited number of surveys. However, it has certain limitations. You can only ask up to 10 questions per survey and can view up to 25 responses per survey. The free plan provides access to basic question types and standard email support. Advanced features like skip logic, custom branding, and detailed data export options are not included and require a paid subscription.
Getting started with SurveyMonkey is a straightforward process.
SurveyMonkey integrates with over 200 applications to help you connect feedback data across your business tools. Some of the most popular integrations include:
Yes, SurveyMonkey provides a robust REST API that allows developers to integrate survey functionality into their own applications. With the API, you can programmatically create surveys, manage collectors, and retrieve response data.
To get an API key, you need to:
Here is a sample Python code snippet to fetch a list of your surveys:
import requests
# Replace with your actual access token
ACCESS_TOKEN = 'YOUR_ACCESS_TOKEN'
headers = {
'Authorization': f'Bearer {ACCESS_TOKEN}',
'Content-Type': 'application/json',
}
response = requests.get('https://api.surveymonkey.com/v3/surveys', headers=headers)
if response.status_code == 200:
surveys = response.json()
print(surveys)
else:
print(f'Error: {response.status_code}')
print(response.json())
SurveyMonkey offers an affiliate program that allows partners to earn commissions by referring new customers. The program is typically managed through a major affiliate network like CJ Affiliate. Affiliates earn a commission, often a percentage of the initial sale, for every new customer who signs up for a paid plan through their unique referral link. To join, you generally need to apply through the affiliate network's platform. Once approved, you get access to marketing materials, tracking links, and a dashboard to monitor your earnings. Payments are handled by the affiliate network according to their payment schedule.