You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -22,87 +22,136 @@ This module loads a dynamically generated JavaScript from prebid.wurflcloud.com
22
22
23
23
## Description
24
24
25
-
The WURFL RTD module enriches the Prebid.js bid request's OpenRTB 2.0 device data with [WURFL device data](https://www.scientiamobile.com/wurfl-js-business-edition-at-the-intersection-of-javascript-and-enterprise/). The module populates the `device` and `device.ext.wurfl` with WURFL device capabilities, ensuring that all bidder adapters have access to enriched device data. At a minimum, three WURFL capabilities are made available to all adapters: `is_mobile`, `complete_device_name` and `form_factor`.
25
+
The WURFL RTD module enriches Prebid.js bid requests with comprehensive device detection data, helping publishers maximize ad revenue through better device targeting. Publishers typically see improved CPM performance, particularly for mobile traffic where device signals provide valuable bidding context.
26
26
27
-
SSPs and other demand partners subscribed to this service with ScientiaMobile will also receive an expanded set of device properties, including more detailed detection for iOS devices (e.g., specific iPhone and iPad model information). For a comprehensive list of available device capabilities, please refer to the [WURFL device capabilities](https://www.scientiamobile.com/capabilities/?products%5B%5D=wurfl-js) documentation.
27
+
The WURFL RTD module relies on localStorage caching and local client-side detection, providing instant device enrichment on every page load.
28
28
29
-
## A Note About User-Agent Client Hints
29
+
The module enriches `ortb2.device` with complete device information and adds extended WURFL capabilities to `device.ext.wurfl`, ensuring all bidder adapters have immediate access to enriched device data.
30
30
31
-
WURFL.js is fully compatible with Chromium's User-Agent Client Hints (UA-CH) device identification mechanisms. If the User-Agent string is generic and Client Hints are not available in the HTTP request, the service will automatically request and obtain [high entropy client hint values](https://wicg.github.io/ua-client-hints/#getHighEntropyValues) from the client.
31
+
### Key Features
32
32
33
-
However, it is still recommended to explicitly opt-in and declare support for User-Agent Client Hints on the publisher's website. Doing so improves performance and contributes to a faster user experience. For detailed instructions on implementing User-Agent Client Hint support, refer to the [relevant documentation here](https://docs.scientiamobile.com/guides/implementing-useragent-clienthints).
33
+
***Instant Device Enrichment**: Device data is available immediately without auction delays
34
+
* First-time visitors: Instant basic device detection using Local Client-side Enrichment (LCE)
35
+
* Returning visitors: Full WURFL data from localStorage cache
36
+
* WURFL.js loads asynchronously in the background to refresh cache for future page loads
34
37
35
-
## Integration Notes
38
+
***Comprehensive Device Detection**: Enriches `ortb2.device` with complete device information including:
* Full iPhone and iPad model recognition in `ortb2.device.hwv` (e.g., "iPhone 16 Pro", "iPad Pro 12.9-inch")
36
41
37
-
While the WURFL RTD module enriches the OpenRTB 2.0 payload, it is the responsibility of the SSP's adapter to access and pass the information to the auction endpoint. The auction endpoint must then use the new data to support its business logic.
42
+
***Bot Detection**: Provides `is_robot` capability in `device.ext.wurfl` for easy bot filtering
43
+
* Additional `robot_family` capability available in paid tiers to identify specific bot types (Googlebot, Bingbot, etc.)
38
44
39
-
The following scenarios are possible:
45
+
***Free Tier Available**: Full WURFL device enrichment for publishers. High-traffic sites and SSPs should contact ScientiaMobile to enable more properties and unlock volume.
40
46
41
-
{: .table .table-bordered .table-striped }
47
+
### Extended Capability Set
48
+
49
+
At a minimum, all adapters receive these WURFL capabilities:
50
+
51
+
*`brand_name`
52
+
*`model_name`
53
+
*`is_ott`
54
+
*`physical_form_factor`
55
+
*`is_console`
56
+
*`resolution_height`
57
+
*`resolution_width`
58
+
*`density_class`
59
+
*`is_full_desktop`
60
+
*`device_os`
61
+
*`device_os_version`
62
+
*`form_factor`
63
+
*`advertised_device_os`
64
+
*`advertised_device_os_version`
65
+
*`pixel_density`
66
+
*`is_robot`
67
+
*`complete_device_name`
68
+
*`is_mobile`
69
+
*`advertised_browser`
70
+
*`advertised_browser_version`
71
+
72
+
Publishers, SSPs and demand partners with a commercial license can receive up to 500+ additional [WURFL device capabilities](https://www.scientiamobile.com/capabilities/?products%5B%5D=wurfl-js) based on their licensing agreement, including:
* Physical device dimensions and screen properties
76
+
* Device pricing and release information
77
+
* Browser and OS version details
78
+
* Bot family identification (paid tier)
79
+
80
+
### User-Agent Client Hints Support
81
+
82
+
WURFL.js is fully compatible with Chromium's User-Agent Client Hints (UA-CH). If the User-Agent string is generic and Client Hints are not available, the service automatically requests and obtains [high entropy client hint values](https://wicg.github.io/ua-client-hints/#getHighEntropyValues) from the client.
83
+
84
+
For optimal performance, publishers should explicitly opt-in and declare User-Agent Client Hints support on their website. See the [UA-CH implementation documentation](https://docs.scientiamobile.com/guides/implementing-useragent-clienthints) for details.
85
+
86
+
## SSP/DSP Integration (IMPORTANT)
87
+
88
+
While the WURFL RTD module enriches the OpenRTB 2.0 payload, SSP adapters must access and pass this information to their auction endpoints. The endpoint must then utilize the enriched device data in its bidding logic.
| SSP adapter is already passing the ORTB2 device to the server (auction endpoint). | No changes required. | Update backend logic to utilize the device data. |
46
-
| SSP adapter is not currently passing the data to server. | Update adapter to read `device` and/or `device.ext.wurfl` data and pass it to the endpoint. | Update backend logic to utilize the device data. |
47
-
| SSP doesn't have a Bidder Adapter. | Implement PreBid.js adapter and read `device` and/or `device.ext.wurfl` data and pass it to the endpoint. | Update end-point to read and utilize the data. |
90
+
### Integration Scenarios
48
91
49
-
## Usage
92
+
| SSP Adapter Status | Required Adapter Changes | Required Server Changes |
| Already passing ORTB2 device to server | No changes required | Update backend logic to utilize device data |
95
+
| Not currently passing device data | Update adapter to read `device` and/or `device.ext.wurfl` and pass to endpoint | Update backend logic to utilize device data |
96
+
| No Bidder Adapter exists | Implement Prebid.js adapter to read and pass `device` and/or `device.ext.wurfl`| Implement endpoint logic to read and utilize data |
50
97
51
-
### Build
98
+
##Building the Module
52
99
53
-
To build the WURFL RTD module with Prebid.js, use the following command:
WURFL RTD adds device information to the bidderRequest's `ortb2.device.ext.wurfl` object (enabled SSPs have access to an extended capability set).
154
+
WURFL RTD adds comprehensive device information to the bid request. The `ortb2.device` object is enriched with standard OpenRTB fields, and `device.ext.wurfl` contains extended WURFL capabilities:
106
155
107
156
```json
108
157
{
@@ -164,3 +213,62 @@ WURFL RTD adds device information to the bidderRequest's `ortb2.device.ext.wurfl
164
213
}
165
214
}
166
215
```
216
+
217
+
### Extended Capabilities in `device.ext.wurfl`
218
+
219
+
Licensed SSPs can receive up to 500+ additional capabilities based on their subscription, including:
220
+
221
+
**Device Identification:**
222
+
223
+
*`wurfl_id`: Unique WURFL device identifier
224
+
*`complete_device_name`: Full commercial device name
For a complete list of available capabilities, see [WURFL Capabilities Documentation](https://www.scientiamobile.com/capabilities/?products%5B%5D=wurfl-js).
253
+
254
+
## A/B Testing with ScientiaMobile
255
+
256
+
The WURFL RTD module includes built-in A/B testing capabilities to help publishers measure the impact of device enrichment on their revenue. When enabled, the module randomly assigns users to treatment (enriched) or control (not enriched) groups.
257
+
258
+
ScientiaMobile can assist with setting up and analyzing A/B tests to quantify the value of WURFL enrichment for your specific inventory. Contact [ScientiaMobile](https://www.scientiamobile.com/contact/) to discuss A/B testing collaboration.
259
+
260
+
## Getting Started
261
+
262
+
1.**Build** Prebid.js with the WURFL RTD module
263
+
2.**Configure** the module in your Prebid.js setup
264
+
3.**Test** locally to verify enrichment
265
+
266
+
## Privacy & Compliance
267
+
268
+
The WURFL RTD module processes minimal personal data under legitimate interest for technical service delivery:
269
+
270
+
* Device detection uses only HTTP headers (User-Agent, Client Hints)
271
+
* No user tracking or cross-site identification
272
+
* IP addresses processed transiently for service delivery only
273
+
274
+
For questions or support, visit [ScientiaMobile Support](https://support.scientiamobile.com).
0 commit comments