Back to Bidders

Kobler

Features

Bidder Code kobler Prebid.org Member no
Prebid.js Adapter yes Prebid Server Adapter no
Media Types display Multi Format Support check with bidder
TCF-EU Support no IAB GVL ID check with bidder
GPP Support check with bidder DSA Support check with bidder
USP/CCPA Support check with bidder COPPA Support check with bidder
Supply Chain Support check with bidder Demand Chain Support check with bidder
Safeframes OK check with bidder Supports Deals yes
Floors Module Support yes First Party Data Support check with bidder
User IDs none ORTB Blocking Support check with bidder
Privacy Sandbox check with bidder

Note

The Kobler Bidder Adapter requires setup and approval from Kobler AS. Please reach out to bidding-support@kobler.no for more information.

Bid Params

Name Scope Description Example Type
test optional Whether the request is for testing only. When multiple ad units are submitted together, it is enough to set this parameter on the first one. Enables providing a custom URL through config.pageUrl. Defaults to false. true boolean
floorPrice optional Floor price in CPM and in USD. Can be used as an alternative to the Floors module, which is also supported by this adapter. Defaults to 0. 5.0 float
dealIds optional Array of deal IDs. ['abc328745', 'mxw243253'] array of strings

Implicit parameters

Kobler identifies the placement using the combination of the page URL and the allowed sizes. As a result, it’s important that the correct sizes are provided in banner.sizes in order for Kobler to correctly identify the placement. The main, desired format should be the first element of this array.

Example

  const adUnits = [{
    code: 'div-gpt-ad-1460505748561-1',
    mediaTypes: {
        banner: {
            sizes: [[320, 250], [300, 250]],
        }
    },
    bids: [{
      bidder: 'kobler'
    }]
  }];

In order to see a sample bid from Kobler (without a proper setup), you have to also do the following:

  • Set the test parameter to true.
  • Set config.pageUrl to 'https://www.tv2.no/mening-og-analyse/14555348/'. This is necessary because Kobler only bids on recognized articles. Kobler runs its own test campaign to make sure there is always a bid for this specific page URL.

Example With Optional Parameters

  const adUnits = [{
    code: 'div-gpt-ad-1460505748561-1',
    mediaTypes: {
        banner: {
            sizes: [[320, 250], [300, 250]],
        }
    },
    bids: [{
      bidder: 'kobler',
      params: {
        test: true,
        floorPrice: 5.0,
        dealIds: ['abc328745', 'mxw243253']
      }
    }]
  }];

"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_kobler hb_bidder_kobler hb_adid_kobler
hb_size_kobler hb_source_kobler hb_format_kobler
hb_cache_host_kobler hb_cache_id_kobler hb_uuid_kobler
hb_cache_path_kobler hb_deal_kobler

Back to Bidders