---
metadata:
  - name: generator
    content: Diplodoc Platform v5.54.5
alternate:
  - https://yandex.com/support/partner/en/prebid/content/index.md
  - href: en/prebid/content/index.md
    type: text/markdown
    title: Markdown version
  - href: ../../llms.txt
    type: text/markdown
    title: llms.txt
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.com/support/partner/en/llms.txt


# Prebid integration guide

## How to start displaying ads {#displaying-ads-summary}

You can start exploring the Yandex Advertising Network as soon as you [fill out the application](https://partner.yandex.com/form/). You'll automatically be granted access to the [Yandex Advertising Network interface](https://partner.yandex.com/).

To start displaying ads:

1. Add a site.
1. Pass site moderation.
1. Add payment information.
1. Create an ad unit.
1. (optional) Specify ad units settings.
1. Get the bidder params for the ad unit.

The following ad formats can be displayed:

- [Adaptive](https://yandex.com/support/partner/en/web/units/formats/main.md) **Text & Image ads** ![](../_images/sd-label.svg). The design of Text & Image ads is created automatically using [Smart Design](https://yandex.com/support/partner/en/technologies/smart-design.md) technology. The technology determines which ad is more likely to attract the user's attention and builds it from the available modules.
- [Display advertising](https://yandex.com/support/partner/en/web/units/formats/media.md) of different formats: both fixed and adaptive.

Ads are picked based on the site's content and each user's personal interests.

## Add a site {#add-website}

1. In the menu on the left, go to **Ads on websites** → **Sites** and click **Add site**.
1. Specify the domain and the name of the site.
1. Click **Save**.

## Pass site moderation {#check-moderation}

The site you added in the Advertising Network interface will appear in the [list of content sites](https://yandex.com/support/partner/en/web/adplatform.md) and will be submitted automatically for [moderation](https://yandex.com/support/partner/en/joining/moderation.md). Site moderation usually takes less than a day, but in rare cases, it may take up to a few days.

To see the site moderation status, go to **Ads on websites** → **Sites**. Once your site passes moderation, you'll be able to create and place ad units.


## Add payment information {#payment-details}

Be sure to enter your payment information and upload electronic copies of documents so that we can transfer you remuneration. Go to **Settings** → **Banking details**, enter your information, and click **Save**.

The set of fields to be filled in depends on the partnership type and your country of residence. You can view a list of all the information and documents you need to receive remuneration in [Documents and payments](https://yandex.com/support/partner/en/payments/index.md).

## Create Prebid AdUnit {#add-unit}

1. Go to **Ads on websites** → **Sites** click to the added website and click **New ad unit**.

1. Select the **Prebid Banner** type. And enter a unit name to be used in the Yandex Advertising Network interface. 

    ![](../_images/create-prebid-adunit.png){style="border: solid 1px #cccccc; max-width=500px"}

1. Use **Standard settings** and click the button **Create**.

1. A window with the embed JS code will open. Please use the embed JS code for the Prebid AdUnit configuration.


## (optional) Specify ad units settings {#optional-settings}

You can specify ad unit settings:

1. Set the CPM floor:

    - **Maximum revenue**: Determine the minimum cost of impressions automatically. With this option, you can effectively fill placements and maximize revenue for the site owner.

    - **CPMV floor**: Set your own minimum cost per thousand impressions based on a [viewability check](*viewability_check). The CPMV floor is set in rubles, US dollars, or euros. You can change the floor currency in your [account settings](https://yandex.com/support/partner/en/account-settings.md).

    {% note alert %}

    Setting a CPMV floor can reduce the unit fill rate and, therefore, decrease your income.

    {% endnote %}
   
1. Click **Save**.

## Get the bidder params of the created ad unit {#get-id}

You can find Yandex adapter setting on the [page](https://docs.prebid.org/dev-docs/bidders/yandex), with the Bid params:

**Name** | **Scope** | **Description** | **Example** | **Type**
----- | ----- | ----- | ----- | -----
placementId | required | placement ID | `'R-A-414314-51'` | String


For example, screenshot of the ad unit `R-A-414314-51` is below:

![](../_images/prebid-adunit.png){style="border: solid 1px #cccccc; max-width=700px"}

In this case, the Prebid bidder params object will have the following configuration for the ad unit:

```java
bids: [{
  bidder: 'yandex',
  params: {
    placementId: 'R-A-414314-51',
    cur: 'USD', // bid currency EUR, TRY, CHF
  },
}]
```

Feel free to contact `prebid@yandex-team.com` if you have any questions or need support for GAM line items.


[*viewability_check]: An impression is considered viewable if at least 50% of the unit area is in the visible area of the screen for at least two seconds.
