Chartboost ad view (chartboost/live-nested)
operated by: Chartboost, Inc.
(get company information on datarequests.org, go to tracker entry in the Exodus database)Endpoint URLs
These are URLs or regexes of endpoints the tracker sends data to. We use these to determine which adapter to apply to a request. Some trackers use the same endpoint for several formats. In this case we use additional logic to match the adapter to the request, refer to the code for more information.https://live.chartboost.com/webview/v2/prefetchhttps://live.chartboost.com/webview/v2/reward/gethttps://live.chartboost.com/webview/v2/interstitial/gethttps://da.chartboost.com/auction/sdk/banner
Decoding steps
Every tracking library has its own way of transmitting tracking data, often even several. They are regularly pretty convoluted, nested encoding schemes. Because of that, the adapter needs to decode the request information into a consistent format. We try to keep keys and paths intact, but the structure results from our decoding. All steps used in the decoding for this adapter are documented here.- Parse the request body as JSON. Store that in the result for the request body.
- Decode the result for the request body at
device.identityas a Base64 string. Replace the existing value. - Parse the result for the request body at
device.identityas JSON. Replace the existing value.
1res.body = parseJson(body)
2res.body.device.identity = decodeBase64(res.body.device.identity)
3res.body.device.identity = parseJson(res.body.device.identity)
Observed data transmissions
This is data that we observed being transmitted by this tracker. Not every request contains all of this data. The context of the data describes where we found the data in the request, the path describes the location of the data in the decoded request. The examples are a selection of observed values.| Property | Context | Path | Examples of observed values |
|---|---|---|---|
| Device advertising ID (GAID/IDFA) | body | device.identity.gaid | 827d8162-0e1c-48cd-892e-4abd3df95ba8ea70edc1-ac05-481c-8d2a-66b1be496a7e830ec0b3-e94e-43e5-8722-a3a428af37bb49b61a9c-cece-4300-b52e-26840e4c258efffe8a97-a504-4d14-89ab-c2025fbaf065 |
| body | device.identity.ifa | C28EC4DC-DC86-4D1E-A3A9-353789F5CD26F04C6D92-D4FA-4CA4-AC62-DE94C8C2DAE7 | |
| App ID | body | app.bundle_id | com.outfit7.mytalkingtom2com.curvydatingcom.PepiPlay.PepiShoppingair.com.tutotoons.app.sweetbabygirlsummerfun2.freecom.outfit7.mytalkingtomfriends |
| App version | body | app.bundle | 2.4.0.5441.0.101.1.197.0.15111.4.1.3 |
| Carrier | body | device.carrier | map[carrier_name:Android iso_country_code:us mobile_country_code:310 mobile_network_code:260 phone_type:1]map[carrier_name:Android iso_country_code:us mobile_country_code:310 mobile_network_code:260 phone_type:1]map[carrier_name:Android iso_country_code:us mobile_country_code:310 mobile_network_code:260 phone_type:1]map[carrier_name:Android iso_country_code:us mobile_country_code:310 mobile_network_code:260 phone_type:1]map[carrier_name:Android iso_country_code:us mobile_country_code:310 mobile_network_code:260 phone_type:1] |
| Country | body | device.country | USDE |
| Is device rooted? | body | device.rooted_device | truefalse |
| Language | body | device.language | enen-DE |
| Manufacturer | body | device.device_type | Google sdk_gphone_x86_64_arm64iPhone9,3iPhone10,4Google sdk_gphone_x86_64iPhone10,6 |
| Model | body | device.model | sdk_gphone_x86_64_arm64iPhoneiPhone9,3iPhone10,4sdk_gphone_x86_64 |
| Network connection type | body | device.mobile_network | 013-1 |
| Orientation | body | device.is_portrait | truefalse |
| OS name | body | device.os | Android 1114.8iOS14.5.1Android |
| OS version | body | device.os | Android 1114.8iOS14.5.1Android |
| Screen height | body | device.h | 256014401334750640 |
| Screen width | body | device.w | 1440256075013341136 |
| Unique session ID | body | app.session_id | 8b6d909e795077fa19e686beb92f7c72618ce9de48372f3453e05689c609ea3c6bbaeff6c32751178c857eb763f478bb94573089200f3e68bf65be002125f518af274d96f8128cfef39fd12a057ea4fc43e309b89ce9ba266f5087134faf00c9d95a2d2a |
| Time zone | body | device.timezone | GMT+01:00GMT+02:00 |
| Tracker SDK version | body | sdk.sdk | 8.1.07.5.06.6.18.2.07.3.0 |
| User agent | body | device.user_agent | Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86_64_arm64 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86_64_arm64 Build/RSR1.201211.001.A1; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36Mozilla/5.0 (iPhone; CPU iPhone OS 14_8 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148Mozilla/5.0 (iPhone; CPU iPhone OS 14_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86_64 Build/RSR1.210722.013.A2; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36 |