---
title: "List Events"
method: GET
path: "/v2/projects/{project_id}/events"
tags: ["Events V2"]
---

# List Events

`GET /v2/projects/{project_id}/events`

Returns a list of events (webhook messages) for the project. Supports pagination and filtering. Requires webhooks:read scope.

## Path parameters

- `project_id` string, required — Project ID

## Query parameters

- `limit` string — a string to be decoded into a number
- `iterator` string
- `channel` string
- `before` string — a string to be decoded into a Date
- `after` string — a string to be decoded into a Date
- `with_content` 'true' | 'false' — a string to be decoded into a boolean
- `tag` string
- `event_types` string[]

## Response `200`

Success

- object
  - `object` 'list', required — Object type, always `list`
  - `data` object[], required — List of events
    - `id` string, required — Unique identifier for the event
    - `object` 'event', required — Object type, always `event`
    - `event_type` string, required — Type of the event
    - `event_id` string, nullable, required — External event ID, or null
    - `channels` string[], nullable, required — Channels the event was sent to
    - `payload` object, required — Event payload data
    - `timestamp` string, required — ISO 8601 timestamp of when the event occurred
  - `has_more` boolean, required — Whether there are more results available
  - `iterator` string — Cursor for forward pagination
  - `prev_iterator` string — Cursor for backward pagination

## Other responses

- `400` — The request did not match the expected schema
- `401` — No API key was provided in the request
- `403` — The API key does not have permission to perform this action
- `404` — The requested resource was not found
- `429` — Too many requests have been made in a short period
- `500` — An unexpected error occurred on the server
- `502` — The upstream webhook provider request failed

---

[API](https://skmtc.dev/superwall/apis/superwall-api-v2.md) · [All operations](https://skmtc.dev/superwall/apis/superwall-api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/superwall/superwall-api-v2/revisions/e04f76c478af/schema)
