---
title: "List event logs"
method: GET
path: "/event-logs"
tags: ["Event Logs"]
---

# List event logs

`GET /event-logs`

List event logs.

See the [event log reference](/reference/manage-vanta/event-log-reference) for an inexhaustive list of `actor.type`, `action`, and `targets[].type` values.

## Query parameters

- `pageSize` integer — Controls the maximum number of items returned in one response from the API.
- `pageCursor` string — A marker or pointer, telling the API where to start fetching items for the subsequent page in a paginated dataset. Note that the requested page will not include the item that corresponds to this cursor but will start from the one immediately after this cursor.
- `startDate` string, date-time

## Response `200`

Ok

- PaginatedResponseEventLog
  - `results` object, required
    - `data` EventLog[], required
      - `id` string, required — The event log's unique ID.
      - `actor` object, required — The event's initiator.
        - `type` string, required — The actor's type.
        - `id` string, required — The actor's unique ID.
      - `date` string, date-time, required — The event's creation date.
      - `action` string, required — The event's action.
      - `targets` object[], required — The list of targets of the event.
        - `type` string, required — The target's type.
        - `id` string, required — The target's unique ID.
    - `pageInfo` PageInfo, required — Provides information about the pagination of a dataset.
      - `endCursor` string, nullable, required — The cursor that points to the end of the current page, or null if there is no such cursor.
      - `hasNextPage` boolean, required — Indicates if there is another page after the current page.
      - `hasPreviousPage` boolean, required — Indicates if there is a page before the current page.
      - `startCursor` string, nullable, required — The cursor that points to the start of the current page, or null if there is no such cursor.

---

[API](https://skmtc.net/vanta/apis/build-integrations.md) · [All operations](https://skmtc.net/vanta/apis/build-integrations/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/vanta/build-integrations/revisions/6c1f7590538b/schema)
