> ## 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.

# Get session replay

> Returns metadata for a single session replay, including the user it belongs to, its start and last-event timestamps, and its chunk and event counts.



## OpenAPI

````yaml /openapi/server.json get /session-replays/{session_replay_id}
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/{session_replay_id}:
    get:
      tags:
        - Session Replays
      summary: Get session replay
      description: >-
        Returns metadata for a single session replay, including the user it
        belongs to, its start and last-event timestamps, and its chunk and event
        counts.
      parameters:
        - name: session_replay_id
          in: path
          schema:
            type: string
          required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                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

````