> 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-offer-events.md).

# Get offer events

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

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

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

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

| Field                  | Type    | Description                                                                                                          |
| ---------------------- | ------- | -------------------------------------------------------------------------------------------------------------------- |
| event\_id              | integer | Event id.                                                                                                            |
| event\_name            | string  | Event name.                                                                                                          |
| event\_payout\_type    | string  | Possible Values: CPC · CPI · CPM · CPA · CPL · CPS · CPA+CPS                                                         |
| event\_payout          | string  | Event payout.                                                                                                        |
| event\_percent\_payout | string  | Event percent payout.                                                                                                |
| conversion\_protocol   | integer | The Conversion tracking method to use for the event. Possible Values: 1:Image Pixel;  2:Postback URL; 3:iFrame Pixel |

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

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

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

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

```
    {
      "code": 0,
      "message": "Success",
      "data": {
        "offer_event": [
          {
            "event_id": 1,
            "event_name": "Initial Event",
            "event_payout_type": "CPA+CPS",
            "event_payout": "1",
            "event_percent_payout": "10",
            "conversion_protocol": 2
          },
          {
            "event_id": 2,
            "event_name": "test",
            "event_payout_type": "CPA",
            "event_payout": "1.000",
            "event_percent_payout": null,
            "conversion_protocol": 3
          }
        ]
      }
    }
```
