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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://offerslook-api.gitbook.io/api-documentation/affiliate_api/offers/get-offers-tracking-link-information.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
