Skip to main content

Rewarded Video

Rewarded video is a user-initiated ad type. It allows end-users to get in-app rewards or other benefits in exchange for viewing a video ad.

Check If Ad Is Loaded

You can check whether or not an ad is loaded at a certain moment. This method returns a boolean value, representing the rewarded video ad loading status.

Appodeal.IsLoaded(AppodealAdType.RewardedVideo);
Check Ad Loading Status

We recommend you always check whether an ad is available before trying to show it.

Example:

if(Appodeal.IsLoaded(AppodealAdType.RewardedVideo)) {
Appodeal.Show(AppodealShowStyle.RewardedVideo);
}

Display

To show a rewarded video ad, you need to call the following method:

Appodeal.Show(AppodealShowStyle.RewardedVideo);

You can use our demo app as a reference project.

Demo App


If you want to use advanced Rewarded Video integration, you can find detailed documentation here