Back to Bidders

Aniview

Features

Bidder Code aniview Prebid.org Member no
Prebid.js Adapter yes Prebid Server Adapter no
Media Types display, video Multi Format Support will-bid-on-any
TCF-EU Support yes IAB GVL ID 780
GPP Support tcfeu, tcfca, usnat, usstate_all, usp DSA Support check with bidder
USP/CCPA Support yes COPPA Support check with bidder
Supply Chain Support yes Demand Chain Support check with bidder
Safeframes OK yes Supports Deals check with bidder
Floors Module Support yes First Party Data Support check with bidder
User IDs all ORTB Blocking Support yes
Privacy Sandbox check with bidder

Note

For more information about Aniview Ad Server, please contact info@aniview.com.

Bid Params

Name Scope Description Example Type
AV_PUBLISHERID required Publisher/Network ID 'Get from Aniview' string
AV_CHANNELID required Channel ID 'Get from Aniview' string

Setup for Video

const adUnit = [{
  code: 'videoAdUnit',
  mediaTypes: {
    video: {
      // Required
      playerSize: [[640, 480]],
      context: 'outstream',
      mimes: ['video/mp4', 'video/mpeg', 'application/javascript'],
      
      // Optional
      playbackmethod: [1, 2],
      protocols: [1, 2, 3, 5, 6, 7, 8],
      api: [1, 2],
      maxduration: 60,
      plcmt: 4,
    },
  },
  bids: [{
    bidder: 'aniview',
    params: {
      // Required
      AV_PUBLISHERID: 'Get from Aniview',
      AV_CHANNELID: 'Get from Aniview',
    },
  }],
}];

Setup for Banner

const adUnit = [{
  code: 'bannerAdUnit',
  mediaTypes: {
    banner: {
      // Required
      sizes: [[300, 250], [300, 600]],
    },
  },
  bids: [{
    bidder: 'aniview',
    params: {
      // Required
      AV_PUBLISHERID: 'Get from Aniview',
      AV_CHANNELID: 'Get from Aniview',
    },
  }],
}];

Setup for Multi-format (Banner & Video)

const adUnit = [{
  code: 'multiformatAdUnit',
  mediaTypes: {
    banner: {
      // Required
      sizes: [[300, 250], [300, 600]],
    },
    video: {
      // Required
      playerSize: [[640, 480]],
      context: 'outstream', 
      mimes: ['video/mp4', 'video/mpeg', 'application/javascript'],
    },
  },
  bids: [{
    bidder: 'aniview',
    params: {
      // Required
      AV_PUBLISHERID: 'Get from Aniview',
      AV_CHANNELID: 'Get from Aniview',
    },
  }],
}];

Bidder specific configs

pbjs.setBidderConfig({
  bidders: ['aniview'],
  config: {
    ortb2: {
      ext: {
        aniview: {
          // Additional data to send to the Ad Server
        },
      },
    },
  },
}, true);

"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_aniview hb_bidder_aniview hb_adid_aniview
hb_size_aniview hb_source_aniview hb_format_aniview
hb_cache_host_anivie hb_cache_id_aniview hb_uuid_aniview
hb_cache_path_anivie hb_deal_aniview

Back to Bidders