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

# Lyzr Agent Session Summary

> Retrieves the summary or payload data associated with a specific session ID.



## OpenAPI

````yaml get /sessions/{session_id}/summary
openapi: 3.0.3
info:
  title: Lyzr Agent Session Summary
  version: 1.0.0
  description: API endpoint to retrieve the summary payload for a specific session ID.
servers:
  - url: https://agent-dev.test.studio.lyzr.ai/v1
security: []
paths:
  /sessions/{session_id}/summary:
    get:
      summary: Get Session Payload Endpoint
      description: >-
        Retrieves the summary or payload data associated with a specific session
        ID.
      operationId: getSessionSummary
      parameters:
        - name: session_id
          in: path
          required: true
          description: The unique identifier of the session.
          schema:
            type: string
            example: '12344456734'
      responses:
        '200':
          description: Session summary successfully retrieved.
          content:
            application/json:
              schema:
                type: object
                properties:
                  summary:
                    type: object
                    description: The summary object or payload associated with the session.
                    example: {}
        '422':
          description: Validation Error (e.g., incorrect path parameter format).
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: array
                    items:
                      type: object
                      properties:
                        loc:
                          type: array
                          items:
                            oneOf:
                              - type: string
                              - type: integer
                        msg:
                          type: string
                        type:
                          type: string
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````