Back to Bidders

seedtag

Features

Bidder Code seedtag Prebid.org Member no
Media Types display, video GDPR TCF Support yes
User IDs none USP/CCPA Support yes
Supply Chain Support no COPPA Support no
Demand Chain Support no Safeframes OK check with bidder
Supports Deals check with bidder Prebid.js Adapter yes
IAB GVL ID 157 Prebid Server Adapter no
Floors Module Support no First Party Data Support check with bidder
Multi Format Support check with bidder ORTB Blocking Support check with bidder

"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_seedtag hb_bidder_seedtag hb_adid_seedtag
hb_size_seedtag hb_source_seedtag hb_format_seedtag
hb_cache_host_seedta hb_cache_id_seedtag hb_uuid_seedtag
hb_cache_path_seedta hb_deal_seedtag

Note

Please reach out to your seedtag account team before using this plugin.
The publisher id 0000-0000-01 returns demo responses.

Bid Params

Name Scope Description Example Type
publisherId required The publisher id. 0000-0000-01 string
adUnitId required The adunit id. 00000 string
placement required Adunit placement, posibles values: inScreen, inArticle string  

InScreen example

The integration for Seedtag uses banner mediaTypes for all types of creatives (display/video)

const adUnits = [
  {
    code: '/21804003197/prebid_test_320x100',
    mediaTypes: {
      banner: {
        sizes: [[320, 100]]
      }
    },
    bids: [
      {
        bidder: 'seedtag',
        params: {
          publisherId: '0000-0000-01',      // required
          adUnitId: '0000',                 // required
          placement: 'inScreen',            // required
        }
      }
    ]
  }
]

InArticle example

The integration for Seedtag uses banner mediaTypes for all types of creatives (display/video)

const adUnits = [
  {
    code: '/21804003197/prebid_test_300x250',
    mediaTypes: {
      banner: {
        sizes: [[300, 250], [1, 1]]
      }
    },
    bids: [
      {
        bidder: 'seedtag',
        params: {
          publisherId: '0000-0000-01',      // required
          adUnitId: '0000',                 // required
          placement: 'inArticle',           // required
        }
      }
    ]
  }
]

Back to Bidders