UserTesting Human Insight Platform is a leading software-as-a-service (SaaS) solution that helps businesses get on-demand feedback from real people. Its core purpose is to provide companies with human insights to improve their products, services, marketing, and overall customer experience. The platform allows organizations to see and hear the experiences of their target audience as they interact with websites, mobile apps, prototypes, and other digital assets. Founded in 2007 by Darrell Benatar and Dave Garr, UserTesting has become a key tool for UX researchers, product managers, designers, and marketers. The company is headquartered in San Francisco, California, and serves a global customer base, including many Fortune 500 companies.
UserTesting offers a robust set of features designed to gather and analyze customer feedback efficiently.
UserTesting provides customized pricing plans based on the needs of different organizations. The pricing is not publicly listed and requires contacting their sales team for a quote. The plans are typically structured in tiers:
UserTesting does not offer a perpetual free plan. However, they provide a free trial for prospective customers. The trial allows you to run a limited number of tests with a select group of participants from their panel. This gives you a chance to experience the platform's core functionality, from creating a test to analyzing the video feedback, before committing to a paid subscription. To access the trial, you typically need to request a demo through their website.
Getting started with UserTesting involves a straightforward workflow to gather valuable user feedback.
UserTesting integrates with several popular tools to help teams incorporate human insight into their daily workflows.
Yes, UserTesting provides a developer API that allows organizations to automate and integrate the platform's capabilities into their own systems. The API can be used to programmatically launch tests, manage participant recruitment, and retrieve test data and video links.
To get an API key, you typically need to be on an enterprise-level plan. The key can be generated within the settings of your UserTesting account. You should consult their developer documentation or contact their support team for specific instructions.
Here is a generic Python code example of how you might make a request to the UserTesting API:
import requests
# Your API credentials
api_token = 'YOUR_API_TOKEN' # This is a secret key
base_url = 'https://api.usertesting.com/v1/'
headers = {
'Authorization': f'Bearer {api_token}',
'Content-Type': 'application/json'
}
# Example: Get a list of tests in your account
response = requests.get(f'{base_url}tests', headers=headers)
if response.status_code == 200:
tests = response.json()
print(tests)
else:
print(f'Error: {response.status_code}')
print(response.text)
UserTesting does not have a public-facing, traditional affiliate program where individuals can sign up and earn commissions for referrals. Instead, they offer a Partner Program for businesses and agencies that want to collaborate more formally. This program is designed for consulting firms, technology partners, and other organizations that can build services or integrations around the UserTesting platform. If you are interested in becoming a partner, you should contact their partnership team directly through their website for more information on the requirements and benefits. For individuals looking to earn money, UserTesting offers a program to become a test participant, but this is separate from a software affiliate program.