Back to Bidders

KueezRTB

Features

Bidder Code kueezrtb Prebid.org Member no
Media Types display, video GDPR TCF Support yes
User IDs britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId USP/CCPA Support yes
Supply Chain Support yes COPPA Support no
Demand Chain Support no GPP Support yes
Supports Deals no Prebid.js Adapter yes
IAB GVL ID 1165 Prebid Server Adapter no
Floors Module Support yes First Party Data Support no
Multi Format Support will-bid-on-one ORTB Blocking Support no
Safeframes OK no

"Send All Bids" Ad Server Keys

These are the bidder-specific keys that would be targeted within GAM in a Send-All-Bids scenario. GAM truncates keys to 20 characters.
hb_pb_kueezrtb hb_bidder_kueezrtb hb_adid_kueezrtb
hb_size_kueezrtb hb_source_kueezrtb hb_format_kueezrtb
hb_cache_host_kueezr hb_cache_id_kueezrtb hb_uuid_kueezrtb
hb_cache_path_kueezr hb_deal_kueezrtb

Bid Params

Name Scope Description Example Type
cId required The connection ID from KueezRTB. '562524b21b1c1f08117fc7f9' string
pId required The publisher ID from KueezRTB. '59ac17c192832d0011283fe3' string
bidFloor optional The minimum bid value desired. KueezRTB will not respond with bids lower than this value. 0.90 float

Example

var adUnits = [{
        code: 'banner-div',
        mediaTypes: {
            banner: {
                sizes: [
                    [300, 250],
                    [728, 90]
                ]
            }
        },
        bids: [{
            bidder: 'kueezrtb',
            params: {
                cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP...
                pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP...
                bidFloor: 1.23                   // Optional
            }
        }]
    }
];

// configure pbjs to enable user syncing
pbjs.setConfig({
    userSync: {
      filterSettings: {
        iframe: {
          bidders: 'kueezrtb',
          filter: 'include'
        }
      }
    }
});

Back to Bidders