1 0 6000 0 600 120 30 https://headerbidding.co 960 0
site-mobile-logo
site-logo

How Can I Get the Bid Price of the Header Auctions?

Here's how to get the details of all the bidders participated in your header auction.

After the auction on the webpage, you can check the bid price with the help of Google Chrome’s developer tools. Follow the steps given below to check the winning bid price received by Google Ad Manager while running Prebid auction:

1. Go to your website’s page that has the ad inventories for which you are running Prebid auctions via Google Ad Manager.

2. Right-click to open Chrome Developer Tools. Now, go to the Sources and click on Snippets.

3. Then, click on + New snippet and give a name to the snippet. In the code field, paste the below code:

var bids = pbjs.getHighestCpmBids();
var output = [];
for (var i = 0; i < bids.length; i++) {
var b = bids[i];
output.push({
‘adunit’: b.adUnitCode, ‘adId’: b.adId, ‘bidder’: b.bidder,
‘time’: b.timeToRespond, ‘cpm’: b.cpm
});
}
if (output.length) {
if (console.table) {
console.table(output);
} else {
for (var j = 0; j < output.length; j++) {
console.log(output[j]);
}
}
} else {
console.warn(‘No prebid winners’);
}

Prebid Check Winning Bids

4. Right-click on the snippet file and select Run. Now, click on Console.

5. Here, you can check the ad slots with various details such as the bidder, ad slot ID, bid price, etc.

Prebid Bids

Snippet from Prebid.org

Ad Ops Quick Fix

Automatad Team

At Automatad, we help publishers to monetize better without hampering the user experience. Our products are live across hundreds of publishers, earning them incremental ad revenue with every passing second. You can request a free audit to get an estimated revenue uplift today.

Ad Ops FAQ
Previous Post
How to Resolve VAST ...
Next Post
How Publishers Can B...
0 Comments
Leave a Reply