> For the complete documentation index, see [llms.txt](https://offerslook-api.gitbook.io/api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://offerslook-api.gitbook.io/api-documentation/affiliate_api/offers/get-offers-tracking-link-information.md).

# Get offer’s tracking link information

| HTTP method | Endpoint                                                |
| ----------- | ------------------------------------------------------- |
| **GET**     | **/aff/v1/batches/offers/tracking\_links/{offer\_ids}** |

## Path parameters <a href="#path-parameters-5" id="path-parameters-5"></a>

| 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 <a href="#response-body-parameters-5" id="response-body-parameters-5"></a>

| 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 <a href="#example-request-5" id="example-request-5"></a>

**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 <a href="#example-response-5" id="example-response-5"></a>

```
    {
      "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' />"
          }
        ]
      }
    }
```
