Back to Bidders

BidDigi

Features

Bidder Code biddigi Prebid.org Member no
Prebid.js Adapter yes Prebid Server Adapter no
Media Types display, video, native 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 check with bidder
Floors Module Support check with bidder First Party Data Support check with bidder
Endpoint Compression check with bidder ORTB Blocking Support check with bidder
User IDs none Privacy Sandbox check with bidder

Note

BidDigi is a programmatic SSP with 380+ verified publishers across news, sports, entertainment, OTT and CTV. This adapter connects to BidDigi’s own OpenRTB 2.5+ auction endpoint, letting any Prebid.js publisher (not just BidDigi’s own network) request bids from BidDigi’s demand.

Bid Params

Name Scope Description Example Type
placementId required BidDigi placement identifier, from your BidDigi dashboard 'placement-123' string
publisherId required BidDigi publisher/account identifier 'publisher-abc' string
region optional Routes the bid request to a regional BidDigi endpoint. Defaults to 'in'. 'in', 'us' string
bidfloor optional Per-imp floor override, in bidfloorcur (defaults to INR) 12.5 float
bidfloorcur optional Currency of bidfloor 'INR' string

Test Parameters

const adUnits = [
  {
    code: 'banner-div',
    mediaTypes: {
      banner: {
        sizes: [[300, 250], [300, 600]],
      },
    },
    bids: [
      {
        bidder: 'biddigi',
        params: {
          placementId: 'placement-123',
          publisherId: 'publisher-abc',
        },
      },
    ],
  },
  {
    code: 'video-div',
    mediaTypes: {
      video: {
        context: 'instream',
        playerSize: [640, 480],
        mimes: ['video/mp4'],
        protocols: [2, 5],
        minduration: 5,
        maxduration: 30,
      },
    },
    bids: [
      {
        bidder: 'biddigi',
        params: {
          placementId: 'placement-video-1',
          publisherId: 'publisher-abc',
          region: 'us',
        },
      },
    ],
  },
  {
    code: 'native-div',
    mediaTypes: {
      native: {
        title: { required: true, len: 80 },
        image: { required: true },
        sponsoredBy: { required: true },
        clickUrl: { required: true },
        body: { required: false },
      },
    },
    bids: [
      {
        bidder: 'biddigi',
        params: {
          placementId: 'placement-native-1',
          publisherId: 'publisher-abc',
        },
      },
    ],
  },
];

"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_biddigi hb_bidder_biddigi hb_adid_biddigi
hb_size_biddigi hb_source_biddigi hb_format_biddigi
hb_cache_host_biddig hb_cache_id_biddigi hb_uuid_biddigi
hb_cache_path_biddig hb_deal_biddigi

Back to Bidders