---
title: "Get Events"
method: GET
path: "/api/agent-chat/sessions/{session_id}/events"
tags: ["Agent Chat"]
---

# Get Events

`GET /api/agent-chat/sessions/{session_id}/events`

Poll-transport read of the event bus: events with seq > `since`.

Replaces the held-SSE `/stream` for the web client (T-907): a held stream
cost one connection per open tab plus a server-side 250ms DB poll for its
lifetime, while this endpoint costs one read per client poll tick.

Returns one `read_page` page (500 raw rows): `next_since` is the raw-scan
watermark the client resumes from (advances even across retired-kind
stretches the filter drops), `has_more=True` tells it to re-poll
immediately instead of waiting a full interval, so a long history replays
in a fast page loop.

## Path parameters

- `session_id` string, required

## Query parameters

- `since` integer

## Cookies

- `ex_access` string, nullable
- `ex_org` string, nullable

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

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