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: banner, video, inImage, inScreen, inArticle | banner | string | 
| adPosition | optional | 0 - Below the Fold, 1 - Above the Fold | 0 | number | 
| video | optional for video | Video targeting parameters. See the video section below. | {} | object | 
Video Param
All parameters are optional and correspond to the the OpenRTB 2.5 specification.
| Name | Example | 
|---|---|
| mimes | [‘video/mp4’] | 
| minduration | 5 | 
| maxduration | 60 | 
| boxingallowed | 1 | 
| skip | 1 | 
| startdelay | 1 | 
| linearity | 1 | 
| battr | [1, 2] | 
| maxbitrate | 10 | 
| playbackmethod | [1] | 
| delivery | [1] | 
| placement | 1 | 
Banner example
const adUnits = [
  {
    code: '/21804003197/prebid_test_300x250',
    mediaTypes: {
      banner: {
        sizes: [[300, 250]]
      }
    },
    bids: [
      {
        bidder: 'seedtag',
        params: {
          publisherId: '0000-0000-01',      // required
          adUnitId: '0000',                 // required
          placement: 'banner',              // required
          adPosition: 0                     // optional
        }
      }
    ]
  }
]
Video InStream Example
var adUnits = [{
  code: 'video',
  mediaTypes: {
    video: {
      context: 'instream',   // required
      playerSize: [600, 300] // required
    }
  },
  bids: [
    {
      bidder: 'seedtag',
      params: {
        publisherId: '0000-0000-01',    // required
        adUnitId: '0000',               // required
        placement: 'video',             // required
        adPosition: 0,                  // optional
        // Video object as specified in OpenRTB 2.5
        video: {
          mimes: ['video/mp4'],         // recommended
          minduration: 5,               // optional
          maxduration: 60,              // optional
          boxingallowed: 1,             // optional
          skip: 1,                      // optional
          startdelay: 1,                // optional
          linearity: 1,                 // optional
          battr: [1, 2],                // optional
          maxbitrate: 10,               // optional
          playbackmethod: [1],          // optional
          delivery: [1],                // optional
          placement: 1,                 // optional
        }
      }
    }
  ]
}];