Revenue & ReportingUpdated May 20
Can I cap how many videos a user sees per day?
Yes. Frequency capping is implemented on your side, via the SDK integration — you control when (and how often) initializeAndOpenPlayer() runs.
Typical patterns:
- Session cap — Limit to 3–5 rewarded videos per session.
- Daily cap — Track view count per user (e.g., in localStorage or your backend) and stop offering the reward once the limit is reached.
- Cooldown — 2–5 minutes between ad availabilities to keep gameplay primary.
See Best Practices for placement guidance.