Module Name: Taboola Adapter
Module Type: Bidder Adapter
Maintainer: [email protected]
Module that connects to Taboola bidder to fetch bids.
- Supports
display
format - Uses
OpenRTB
standard
The Taboola Bidding adapter requires setup before beginning. Please contact us on [email protected]
var adUnits = [{
code: 'your-unit-container-id',
mediaTypes: {
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: 'taboola',
params: {
tagId: 'tester-placement', // Placement Name
publisherId: 'tester-pub', // your-publisher-id
bidfloor: 0.25, // Optional - default is null
bcat: ['IAB1-1'], // Optional - default is []
badv: ['example.com'], // Optional - default is []
}
}]
}];
Name | Scope | Description | Example | Type |
---|---|---|---|---|
tagId |
required | Tag ID / Placement Name |
'Below The Article' |
String |
publisherId |
required | Numeric Publisher ID (as provided by Taboola) |
'1234567' |
String |
bcat |
optional | List of blocked advertiser categories (IAB) | ['IAB1-1'] |
Array |
badv |
optional | Blocked Advertiser Domains | 'example.com' |
String Url |
bidfloor |
optional | CPM bid floor | 0.25 |
Float |