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

# List session replays

> Lists session replays for the project, most recently active first. Supports filtering by user, team, duration, last-event time, and click count, and cursor-based pagination.



## OpenAPI

````yaml /openapi/server.json get /session-replays
openapi: 3.1.0
info:
  title: Hexclave REST API
  version: 1.0.0
  description: >-
    The Hexclave REST API. All request headers are documented as canonical
    `X-Hexclave-*`; the equivalent `X-Stack-*` aliases are accepted on every
    endpoint for backwards compatibility. Response headers
    `X-Hexclave-actual-status`, `X-Hexclave-known-error`, and
    `X-Hexclave-request-id` are emitted alongside their legacy `X-Stack-*`
    equivalents.
servers:
  - url: https://api.hexclave.com/api/v1
    description: Hexclave REST API
security: []
paths:
  /session-replays:
    get:
      tags:
        - Session Replays
      summary: List session replays
      description: >-
        Lists session replays for the project, most recently active first.
        Supports filtering by user, team, duration, last-event time, and click
        count, and cursor-based pagination.
      parameters:
        - name: cursor
          in: query
          schema:
            type: string
          required: false
        - name: limit
          in: query
          schema:
            type: string
          required: false
        - name: user_ids
          in: query
          schema:
            type: string
          required: false
        - name: team_ids
          in: query
          schema:
            type: string
          required: false
        - name: duration_ms_min
          in: query
          schema:
            type: string
          required: false
        - name: duration_ms_max
          in: query
          schema:
            type: string
          required: false
        - name: last_event_at_from_millis
          in: query
          schema:
            type: string
          required: false
        - name: last_event_at_to_millis
          in: query
          schema:
            type: string
          required: false
        - name: click_count_min
          in: query
          schema:
            type: string
          required: false
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        refresh_token_id:
                          type: string
                        project_user:
                          type: object
                          properties:
                            id:
                              type: string
                            display_name:
                              type:
                                - string
                                - 'null'
                              enum:
                                - null
                            primary_email:
                              type:
                                - string
                                - 'null'
                              enum:
                                - null
                          required:
                            - id
                        started_at_millis:
                          type: number
                        last_event_at_millis:
                          type: number
                        chunk_count:
                          type: number
                        event_count:
                          type: number
                      required:
                        - id
                        - refresh_token_id
                        - project_user
                        - started_at_millis
                        - last_event_at_millis
                        - chunk_count
                        - event_count
                  pagination:
                    type: object
                    properties:
                      next_cursor:
                        type:
                          - string
                          - 'null'
                        enum:
                          - null
                    required: []
                required:
                  - items
                  - pagination

````