> ## Documentation Index
> Fetch the complete documentation index at: https://docs.markifact.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Pixel Events

> Check recent OpenAI Ads pixel events for debugging: up to 50 conversion events received from the Pixel SDK in the previous 15 minutes

Check recent OpenAI Ads pixel events for debugging: up to 50 conversion events received from the Pixel SDK in the previous 15 minutes. Use it to confirm a pixel is firing, not for attribution (use the reporting node for that). Available only to enabled accounts.

|                      |                               |
| -------------------- | ----------------------------- |
| **App**              | OpenAI Ads                    |
| **Operation ID**     | `openai_ads_get_pixel_events` |
| **Type**             | Action                        |
| **Connection**       | `openai_ads` (required)       |
| **Credits per run**  | Free                          |
| **Agent / MCP tool** | Yes                           |

## Inputs

| Field      | Type                       | Required | Default | Description                                                                                         |
| ---------- | -------------------------- | -------- | ------- | --------------------------------------------------------------------------------------------------- |
| `pixel_id` | string or SelectableOption | Yes      | -       | Pixel ID to check (the pixel\_id value from openai\_ads\_list\_pixels, not the cds\_... source id). |

### SelectableOption

| Field   | Type   | Required | Default | Description |
| ------- | ------ | -------- | ------- | ----------- |
| `value` | string | Yes      | -       |             |
| `label` | string | Yes      | -       |             |

## Output

**Type**: `List[Dict]`

Returns recent pixel event objects exactly as returned by the OpenAI Ads API (event\_type, action\_source, api\_channel, event\_timestamp\_ms, received\_at\_ms, ...).

**Fields**: dynamic (depend on the inputs)

**Example**:

```json theme={"dark"}
[
  {
    "event_type": "page_viewed",
    "action_source": "web",
    "api_channel": "pixel_sdk",
    "received_at_ms": 1787082320225
  }
]
```
