Your digital
suggestion box.
Turn any table, counter, or checkout into a feedback touchpoint.
Place a QR code. Get instant feedback. See complaints in real-time, not three weeks later on Google Reviews.
How it works
Turn any touchpoint into a feedback endpoint
Physical Endpoints
Place a QR code or e-ink display. It's just a URL.
Capture Signal
High-volume, low-friction inputs. 5 seconds or less.
👆 Try it live
Act Immediately
Email alerts and webhooks when feedback drops.
Software has it easy.
Reality is hard.
When a server throws a 500 error, you get a notification. When a customer has a terrible experience at table 4, you get silence. Until the bad review posted 3 weeks later.
We built Feedbackscreen to close that loop. It's not a "suite". It's not "enterprise experience management". It's a pipe for truth.
- ✓ Zero cookies. Zero tracking.
- ✓ Hardware agnostic (Print, E-ink, Kiosk)
- ✓ Real-time webhooks
- ✓ Built on standard Rails
class AlertRule
def check_and_notify(response)
# 1. Check if alert should fire
return unless matches?(response)
# 2. Send webhook notification
HTTParty.post(
webhook_url,
body: { alert: name, score: response.nps_score }
)
end
end