Skip to content

Commit f3a2686

Browse files
authored
Update Panxo bidder docs: require RTD module instead of Signal script (#6431)
Replace standalone Signal script requirement with the now-approved Panxo RTD Module (panxoRtdProvider) as the required integration method.
1 parent 34aa3b2 commit f3a2686

1 file changed

Lines changed: 26 additions & 7 deletions

File tree

dev-docs/bidders/panxo.md

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ sidebarType: 1
2424

2525
### Before You Begin
2626

27-
The Panxo adapter requires the Panxo Signal script to be installed on your page before Prebid.js loads. Please register at [app.panxo.ai](https://app.panxo.ai) to obtain your property key and Signal script endpoint.
27+
The Panxo adapter requires the [Panxo RTD Module](/dev-docs/modules/panxoRtdProvider.html) to be included in your Prebid.js build. The RTD module detects AI-referred traffic and enriches bid requests with classification signals that the adapter needs to participate in the auction.
2828

29-
**Important**: Without the Signal script setting the `panxo_uid` in localStorage, the adapter will not participate in the auction.
29+
Please register at [app.panxo.com](https://app.panxo.com) to obtain your `siteId` (for the RTD module) and `propertyKey` (for the bid adapter).
30+
31+
**Important**: Without the Panxo RTD module configured, the adapter will not participate in the auction.
3032

3133
### Bid Params
3234

@@ -38,15 +40,32 @@ The Panxo adapter requires the Panxo Signal script to be installed on your page
3840

3941
### Setup Example
4042

41-
```html
42-
<!-- Step 1: Panxo Signal Script (MUST load before Prebid) -->
43-
<script async src="https://cdn.panxo-sys.com/o/YOUR_ENDPOINT_KEY"></script>
43+
#### Step 1: Build Prebid.js with required modules
44+
45+
Include both `panxoRtdProvider` and `panxoBidAdapter` in your Prebid.js build:
4446

45-
<!-- Step 2: Prebid.js -->
46-
<script async src="prebid.js"></script>
47+
```bash
48+
gulp build --modules=rtdModule,panxoRtdProvider,panxoBidAdapter,...
4749
```
4850

51+
Or select both **Panxo RTD Module** and **Panxo** on the Prebid [Download](/download.html) page.
52+
53+
#### Step 2: Configure RTD module and ad units
54+
4955
```javascript
56+
pbjs.setConfig({
57+
realTimeData: {
58+
auctionDelay: 300,
59+
dataProviders: [{
60+
name: 'panxo',
61+
waitForIt: true,
62+
params: {
63+
siteId: 'your-site-id'
64+
}
65+
}]
66+
}
67+
});
68+
5069
var adUnits = [{
5170
code: 'banner-ad',
5271
mediaTypes: {

0 commit comments

Comments
 (0)