> 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_information_about_a_specific_offers_postback_u.md).

# Get information about a specific offer’s postback url

| HTTP method | Endpoint                                 |
| ----------- | ---------------------------------------- |
| **GET**     | **/aff/v1/offers/{offer\_id}/postbacks** |

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

| Parameter | Description                  |
| --------- | ---------------------------- |
| offer\_id | The unique id for the offer. |

***Note: this offer must be approved by the audit.***

## Response body parameters <a href="#response-body-parameters-6" id="response-body-parameters-6"></a>

| Field         | Type    | Description                                                              |
| ------------- | ------- | ------------------------------------------------------------------------ |
| id            | integer | Affiliate postback id.                                                   |
| offer\_id     | integer | Offer id. ***Offer\_id=0 indicates the Postback is a Global Postback.*** |
| affiliate\_id | integer | Affiliaite id                                                            |
| event\_id     | integer | Event id.                                                                |
| code          | string  | Code.                                                                    |
| status        | string  | Status of Postback.  pending;  approved;  rejected                       |
| type          | string  | Type of code.   1:Image Pixel;   2:Postback URL;   3:HTML Pixel          |
| create\_time  | integer | Create time.                                                             |
| update\_time  | integer | Update time.                                                             |

## Example request <a href="#example-request-6" id="example-request-6"></a>

**Request GET** <https://{networkname}.api.offerslook.com/aff/v1/offers/102/postbacks>

**Request GET** <http://{networkname}.api.offerslook.com/aff/v1/offers/102/postbacks>

## Example response <a href="#example-response-6" id="example-response-6"></a>

```
    {
      "code": 0,
      "message": "Success",
      "data": {
        "postback": [
          {
            "id": 210,
            "offer_id": 102,
            "affiliate_id": 161,
            "event_id": 1,
            "type": 2,
            "code": "https://www.offerslook.com/signup.html",
            "status": "approved",
            "create_time": 1478031171,
            "update_time": 1478231171
          },
          {
            "id": 211,
            "offer_id": 102,
            "affiliate_id": 161,
            "event_id": 2,
            "type": 1,
            "code": "<img src="https: //www.offerslook.com">",
            "status": "pending",
            "create_time": 1478031196,
            "update_time": 1478031196
          }
        ]
      }
    }
```
