Get information about a specific offer’s browser
HTTP method
Endpoint
GET
/v1/offers/{offer_id}/browser
Path parameters
Parameter
Description
offer_id
The unique id for the offer.
Response body parameters
Field
Type
Description
id
integer
offer_id
integer
A string that uniquely identifies this offer.
browser_name
string
Browser to be targeted
Example request
Request GET https://{networkname}.api.offerslook.com/v1/offers/544478/browser
Request GET http://{networkname}.api.offerslook.com/v1/offers/544478/browser
Example response
{
"code": 0,
"message": "Success",
"data": {
"offer_browser": [
{
"id": 15,
"offer_id": 544478,
"browser_name": "Chrome"
},
{
"id": 16,
"offer_id": 544478,
"browser_name": "360 Browser"
},
{
"id": 17,
"offer_id": 544478,
"browser_name": "Amaya"
}
]
}
}
Last updated
Was this helpful?