Home / Android / Additional information in the requests (interstitials and banners)

Additional information in the requests (interstitials and banners)

When you send a request (for a banner or an interstitial), we recommend to send additional information to get better results (earnings or downloads). It’s as easy as adding a parameter of the AdRequest when you use the loadAd method. It’s not necessary to add all the information, but the more information you send, the better results you will get. Example:

//For interstitials
AdRequest adRequest = new AdRequest()
.keywords("news,sports")
.age(30)
.gender(Gender.MALE)
.maritalStatus(MaritalStatus.MARRIED)
.yearOfBirth(1987);
interstitial.loadAd(adRequest);

//For banners
AdRequest adRequest = new AdRequest()
.keywords("games, kids")
.gender(Gender.MALE);
banner.loadAd(adRequest)