Get offer’s tracking link information
HTTP method
Endpoint
GET
/aff/v1/batches/offers/tracking_links/{offer_ids}
Path parameters
Parameter
Description
offer_id
The unique id for the offer.
Note: If you want to get the tracking link of an offer, on the premise that the offer should have been audited (visible in the personal list), or when the offer_approval field is equal to 2 (Public), the tracking link can be obtained!
Response body parameters
Field
Type
Description
offer_id
integer
The unique id for the offer.
url
string
The tracking link url of the offer.
impression_pixel
string
The impression pixel url of the offer.
Example request
Request GET https://{networkname}.api.offerslook.com/aff/v1/batches/offers/tracking_links/16,102
Request GET http://{networkname}.api.offerslook.com/aff/v1/batches/offers/tracking_links/16,102
Example response
{
"code": 0,
"message": "Success",
"data": {
"tracking_link": [
{
"offer_id": 16,
"url": "https://click.dev.offerslook.com/index.php?offer_id=16&aff_id=40",
"impression_pixel": "<img src='http://qoqololo.iuniontrack.com:9080/impr.php?offer_id=16&aff_id=40' border='0' width='1' height='1' />"
},
{
"offer_id": 102,
"url": "https://click.dev.offerslook.com/index.php?offer_id=102&aff_id=40",
"impression_pixel": "<img src='http://qoqololo.iuniontrack.com:9080/impr.php?offer_id=102&aff_id=40' border='0' width='1' height='1' />"
}
]
}
}
PreviousGet information about a specific offer’s platformNextGet information about a specific offer’s tracking link
Last updated
Was this helpful?