Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 930 Bytes

hypelabBidAdapter.md

File metadata and controls

38 lines (32 loc) · 930 Bytes

Overview

Module Name: HypeLab Bid Adapter
Module Type: Bidder Adapter
Maintainer: [email protected]

Description

Prebid.JS adapter that connects to HypeLab ad network for bids. NOTE: The HypeLab Adapter requires setup and approval before use. Please reach out to [email protected] for more details. To get started, replace the property_slug with your property_slug and the placement_slug with your placement slug to receive bids. The placement slug will depend on the required size and can be set via the HypeLab interface.

Test Parameters

Sample Banner Ad Unit

var adUnits = [
  {
    code: 'banner-div',
    mediaTypes: {
      banner: {
        sizes: [[728, 90]],
      },
    },
    bids: [
        {
            bidder: 'hypelab',
            params: {
                property_slug: 'prebid',
                placement_slug: 'test_placement'
            }
        }
    ]
  }
]