Usabilla
This technology is used by 0.05% of websites in the Issue trackers category. The most popular industry vertical is Business and Finance, with Travel Type being the top subcategory.
What is Usabilla?
Usabilla is a user feedback platform that enables companies to collect real-time insights from customers across websites, mobile apps, and email campaigns. The platform specializes in targeted, contextual feedback collection—asking users for input at specific moments during their digital journey rather than relying on generic surveys.
Founded in 2009 in Amsterdam, Usabilla was acquired by SurveyMonkey (now Momentive) in 2019. The platform serves enterprise clients seeking to understand user experience issues, identify conversion blockers, and measure customer sentiment. Its strength lies in capturing feedback in context—when users encounter problems or complete tasks—providing actionable insights tied to specific pages and interactions.
Industry Vertical Distribution
Technologies Frequently Used with Usabilla
| Technology | Co-usage Rate | Website |
|---|---|---|
| Google Tag Manager | 84.05% | http://www.google.com/tagmanager |
| Google Analytics | 73.71% | http://google.com/analytics |
| jQuery | 65.95% | https://jquery.com |
| 49.57% | http://facebook.com | |
| jQuery UI | 32.76% | http://jqueryui.com |
| Microsoft 365 | 29.74% | https://www.microsoft.com/microsoft-365 |
| Bootstrap | 29.31% | https://getbootstrap.com |
| React | 26.72% | https://reactjs.org |
| OneTrust | 25.86% | http://www.onetrust.com |
| Underscore.js | 25.43% | http://underscorejs.org |
Key Features
Feedback Channels
- Website Feedback: Persistent feedback buttons and targeted slide-out surveys
- In-App Feedback: Native SDKs for iOS and Android applications
- Email Feedback: Embedded surveys in transactional and marketing emails
Targeting and Triggering
Show surveys based on user behavior: time on page, scroll depth, exit intent, specific page visits, or custom JavaScript events. Target by URL patterns, user segments, or session attributes.
Visual Feedback
Users can highlight areas of the page while providing feedback. Screenshots are automatically captured with highlights and annotations, showing exactly what users reference.
Sentiment Analysis
Automatic categorization of feedback as positive, negative, or neutral. NPS, CSAT, and CES scoring track satisfaction trends over time.
Analytics Dashboard
- Real-time feedback stream with filtering and search
- Trend analysis across time periods
- Page-level performance comparisons
- Export capabilities for deeper analysis
Integrations
Connect to Slack, Zendesk, Salesforce, Google Analytics, Adobe Analytics, and other platforms via native integrations or API.
AI-Powered Technology Recommendations
Our AI recommender engine, trained on 100 million data points, suggests these technologies for websites using Usabilla:
| Technology | AI Score | Website |
|---|---|---|
| OneTrust | 0.24 | http://www.onetrust.com |
| Salesforce | 0.23 | https://www.salesforce.com |
| Salesforce Service Cloud | 0.22 | https://www.salesforce.com/au/products/service-cloud/ |
| jQuery Mobile | 0.21 | https://jquerymobile.com |
| Dynatrace | 0.19 | https://www.dynatrace.com |
| Salesforce Commerce Cloud | 0.18 | http://demandware.com |
| GetFeedback | 0.17 | https://www.getfeedback.com |
| Cufon | 0.17 | http://cufon.shoqolate.com |
| DataTables | 0.17 | http://datatables.net |
| Tripadviser.Widget | 0.17 | https://www.tripadvisor.com/Widgets |
IAB Tier 1 Vertical Distribution
Relative Usage by Industry
Market Distribution Comparison
Use Cases
Conversion Optimization
E-commerce teams deploy Usabilla on checkout pages to understand why users abandon carts. Exit-intent surveys capture reasons for leaving, revealing UX issues, pricing concerns, or missing features that block purchases.
Website Redesign Validation
Before and after redesigns, teams collect baseline sentiment and measure impact. Targeted surveys on changed pages identify what works and what creates friction for users.
Support Deflection
Help center pages include feedback buttons to identify gaps in documentation. When users indicate content didn't help, product teams know which articles need improvement.
App Store Rating Management
Mobile apps use Usabilla to identify satisfied users and prompt them to rate the app, while routing unhappy users to support channels instead of public reviews.
Feature Launch Feedback
After releasing new features, targeted surveys gather first impressions from users who interact with the new functionality. Quick iteration cycles respond to early feedback before wider rollout.
Continuous Voice of Customer
Always-on feedback buttons let users report issues whenever encountered. The constant stream of feedback creates an early warning system for problems.
IAB Tier 2 Subcategory Distribution
Top Websites Using Usabilla
| Website | IAB Category | Subcategory | OpenRank |
|---|---|---|---|
| cnn.com | News and Politics | International News | 7.09 |
| sbs.com.au | Music and Audio | Sports Radio | 5.71 |
| seagate.com | Business and Finance | Industries | 5.58 |
| akc.org | Pets | Dogs | 5.54 |
| accorhotels.com | Travel | Travel Type | 5.34 |
| churchofjesuschrist.org | Religion & Spirituality | Genealogy and Ancestry | 5.28 |
| skyscanner.net | Travel | Travel Type | 5.23 |
| visualstudio.com | Technology & Computing | Computing | 5.22 |
| hermanmiller.com | Business and Finance | Design | 5.16 |
| steelcase.com | Business and Finance | Industries | 5.13 |
Implementation Examples
Basic Website Installation
<!-- Usabilla Website Feedback -->
<script type="text/javascript">
window.lightningjs||function(c){function g(b,d){d&&(d+=(/\?/.test(d)?"&":"?")+"lv=1");c[b]||function(){var i=window,h=document,j=b,g=h.location.protocol,l="load",k=0;(function(){function b(){a.P(l);a.w=1;c[j]("_load")}c[j]=function(){function m(){m.id=e;return c[j].apply(m,arguments)}var b,e=++k;b=this&&this!=i?this.id||0:0;(a.s=a.s||[]).push([e,b,arguments]);return m};var a=c[j]._={};a.hierarchies={};a.hierarchies[j]=[];a.P=function(b){for(var c=a.hierarchies[j],e=0;e
Custom Survey Triggering
// Trigger survey after purchase completion
function onPurchaseComplete(orderData) {
window.usabilla_live('trigger', 'post_purchase_survey', {
orderId: orderData.id,
orderValue: orderData.total,
productCount: orderData.items.length
});
}
// Trigger on scroll depth
window.addEventListener('scroll', function() {
var scrollPercent = (window.scrollY / document.body.scrollHeight) * 100;
if (scrollPercent > 75 && !window.surveyTriggered) {
window.surveyTriggered = true;
window.usabilla_live('trigger', 'content_engagement');
}
});
User Identification
// Pass user data to Usabilla
window.usabilla_live('data', {
custom: {
user_id: '12345',
account_type: 'premium',
signup_date: '2023-06-15',
lifetime_value: 1500
}
});
Mobile SDK (iOS Swift)
import Usabilla
// Initialize
Usabilla.initialize(appID: "YOUR_APP_ID")
// Show campaign
Usabilla.sendEvent(event: "purchase_complete")
// Show passive feedback form
Usabilla.loadFeedbackForm("FORM_ID") { form in
self.present(form, animated: true)
}
Usage by Domain Popularity (Top 1M)
Usage by Domain Age
The average age of websites using Usabilla is 17.4 years. The average OpenRank (measure of backlink strength) is 3.02.
Benefits and Considerations
Key Benefits
- Contextual Insights: Feedback tied to specific pages and moments, not generic opinions
- Visual Evidence: Screenshots show exactly what users reference
- Real-Time Stream: Issues surface immediately, enabling quick response
- Multi-Channel: Consistent feedback collection across web, mobile, and email
- Targeting Flexibility: Show surveys to right users at right moments
- Enterprise Scale: Handle high-traffic sites with robust infrastructure
Considerations
- Enterprise pricing may be prohibitive for smaller organizations
- Full feature set requires multiple product licenses (web, mobile, email)
- Survey fatigue possible if targeting not carefully managed
- Custom integrations may require development resources
Post-Acquisition Status
Since the SurveyMonkey acquisition, Usabilla has been integrated into the Momentive platform alongside GetFeedback. Organizations evaluating Usabilla should consider the broader Momentive ecosystem and how products may evolve or consolidate.
Alternatives
Similar platforms include Hotjar (feedback + heatmaps), Qualtrics (enterprise surveys), Medallia (experience management), and Mopinion (European competitor). Each offers different balances of features, pricing, and enterprise capabilities.
Emerging Websites Using Usabilla
| Website | IAB Category | Subcategory | OpenRank |
|---|---|---|---|
| nestle100grand.com | Pets | Business | 0 |
| thesebelwestperth.com.au | Travel | Travel Type | 0 |
| mutualdirect.com | Personal Finance | Insurance | 0.38 |
| hcmadelivery.com | Medical Health | Retail Property | 0.39 |
| dynacoatcr.com | Business and Finance | Business | 0.44 |
