Engagement, signed events,
compliance — without the build.
A daily reason to open the app
Daily-active is the fintech KPI. Mini-games create a return habit your push notifications can't.
Audit-ready completion events
HMAC-SHA256 signed, origin-locked, replay-safe. Webhook delivery to your server with 30-day log retention.
Settle perks with confidence
Award cashback, points, savings boosts, or tier upgrades on completion — every event has a stable event_id.
Audit-ready by default
Per-account signing key, idempotent event_id, 30-day delivery log — passes regulated-industry review.
Signed events,
straight to your ledger.
Embed in-app, track in-page if you want — but the event of record arrives at your webhook signed with your per-account secret. Replay-safe, idempotent, retried up to three times with exponential backoff and a 30-day delivery log.
<div id="pg-host"></div>
<script src="https://static.playgent.com/player/v2.js"></script>
<script>
Playgent.init({
containerId: "pg-host",
player: "plyr_neobank",
game: "wordsearch",
mode: "daily",
externalUserId: session.userId,
onComplete: ({ score, externalUserId, won }) => {
// signed event also delivered to your webhook — settle on the server
analytics.track("daily_game_completed", { score });
},
});
</script>“Mini-games drove our biggest engagement lift of the year — and we built zero of them.”
Three patterns most fintech
teams ship first.
Sign-up bonus game
Replace a one-time bonus pop-up with a quick play that unlocks the bonus — engagement on day one.
Daily savings booster
Play to multiply today's interest, round-up bonus, or savings goal contribution.
Refer-a-friend unlock
Gate the referral reward behind a 30-second mini-game both parties play.
What fintech teams
ask first.
- Is the signed completion event compliance-friendly?
- Yes. Every event is HMAC-SHA256 signed against your per-account secret, carries a stable event_id for idempotency, and is retained in our delivery log for 30 days (longer on Enterprise). Treat the webhook as the system of record — never the client callback alone.
- Do you support PII-light delivery?
- external_user_id is opaque — pass an internal ID, never personal data. Sessions are processed via our global edge.
- Will Playgent work inside an iOS or Android WebView and React Native shell?
- Yes. The runtime is a standard HTML5 embed, works inside iOS WKWebView, Android WebView, React Native WebView, and Flutter InAppWebView. Native-app-store review treats it as first-party content under your domain because it ships under your origin via origin allowlist.
- What if our risk team needs to verify completions independently?
- The webhook signature uses your shared secret — your security team can re-verify any event with a standard HMAC-SHA256 check. The body is JSON, the timestamp is in the Playgent-Signature header, and the replay window is configurable (default 5 minutes).