# Rewarded

{% hint style="info" %}
There are some advertisement settings in the `playgama-bridge-config.json` file

[playgama-bridge-config](https://wiki.playgama.com/playgama/sdk/playgama-bridge-config "mention")
{% endhint %}

**Rewarded ads** are a type of advertisement where players have the option to watch an ad in exchange for in-game rewards

Offer players rewards in exchange for watching ads, incentivizing ad engagement and increasing ad revenue.

#### Is Rewarded Supported

Check if the platform supports displaying rewarded ads.

<figure><img src="https://1088849411-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F5ukgSPDBOdbQp4FYtbz1%2Fuploads%2FfNI4i7tATFtz9wgWFLbi%2FScreenshot%202025-07-25%20at%2010.06.54%E2%80%AFAM.png?alt=media&#x26;token=628e2995-c082-4c5a-915e-48b3a62686e2" alt=""><figcaption></figcaption></figure>

#### Rewarded State

Monitor the state of the rewarded ad to manage the reward process.

```javascript
PlaygamaBridge::RewardedState()
```

Current state of the rewarded ad. Possible values: `loading`, `opened`, `closed`, `rewarded`, `failed`.

<figure><img src="https://1088849411-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F5ukgSPDBOdbQp4FYtbz1%2Fuploads%2Fz2ObQgTVsbgsQB7n1ovb%2FScreenshot%202025-01-21%20at%2013.11.52.png?alt=media&#x26;token=c5f0f867-d9da-4d1d-b454-42a31a375531" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
React to changes in ad state. For example, mute the game sound when `opened` and unmute when `closed` or `failed`.
{% endhint %}

{% hint style="danger" %}
Reward the player only when the state is `rewarded`.
{% endhint %}

#### Rewarded Placement

Monitor the current placement of the rewarded ad to manage the reward process.

```javascript
PlaygamaBridge::RewardedPlacement()
```

#### Show Ad <a href="#show-a-d-1" id="show-a-d-1"></a>

Display a rewarded ad and provide incentives to players for watching the entire ad. Parameters:

* Placement (optional)

<figure><img src="https://1088849411-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F5ukgSPDBOdbQp4FYtbz1%2Fuploads%2FhQ5QrU3h4T8T7omp3Ip7%2FScreenshot%202025-05-28%20at%2011.37.31%E2%80%AFAM.png?alt=media&#x26;token=0716809d-da23-4e10-a049-4134baae374a" alt=""><figcaption></figcaption></figure>
