Bidders - Browser service
Article 02/22/2024
3 contributors
Feedback
In this article
This is a read-only service that shows you the mapping between the browser IDs that you see in the Bid Request and their names. For example, you can see that Google Chrome 's ID in our system is 8.
REST API
JSON fields
Parameter
Type
Description
id
int
ID of the browser entry.
last_modified
string
The date and time the browser entry was last modified.
name
string
Name of the browser.
platform_type
enum - "web", "mobile", or "both"
Describes whether the browser runs on web devices, mobile devices, or both.
Example
To return a specific browser
$ curl -b cookies -c cookies https://api.adnxs.com/browser/2
{
"response":{
"status":"OK",
"browser":{
"id":2,
"name":"Firefox (all versions)",
"last_modified":"2010-06-30 19:38:01"
},
"count":1,
"start_element":null,
"num_elements":null
}
}