# List event streams

`GET https://api.cademi.com.br/api/v3/event-streams`

Operation ID: `event_streams.list` · API v3

Lists the event streams created by the current credential, using cursor-based pagination.

Event streams created by other credentials are never included, even within the same account.

Required permissions: `event_streams.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `limit` | query | integer | no |  |
| `cursor` | query | string | no |  |

## Responses

### 200

Returns the collection of event streams.

Body: `data`: array of EventStream.

Fields of EventStream:

| Field | Type | Required | Description |
|---|---|---|---|
| `connection` | object | yes |  |
| `created_at` | string (date-time) | yes |  |
| `cursor` | object | yes |  |
| `expires_at` | string (date-time) | yes |  |
| `filters` | object | yes | Filters applied to the stream, with optional eventtypes and resourcetypes arrays of strings. An empty object means no filtering. |
| `id` | string | yes |  |
| `last_seen_at` | string or null (date-time) | yes |  |
| `object` | string, one of `event_stream` | yes |  |
| `status` | string, one of `active`, `revoked`, `expired` | yes |  |

### 400

The cursor is invalid or the request contains an unsupported query parameter.

Body: Error.

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

Full schema: https://cademi.dev/openapi/v3.json
