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

# Get Session Result

> Returns the complete session result including the execution data and output. This endpoint is useful for retrieving the final result of a completed session.



## OpenAPI

````yaml GET /api/get_session_result/{session_id}
openapi: 3.0.1
info:
  title: Kura API
  description: API specification for Kura's agent and session management endpoints
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://backend.trykura.com
security: []
paths:
  /api/get_session_result/{session_id}:
    get:
      description: >-
        Returns the complete session result including the execution data and
        output. This endpoint is useful for retrieving the final result of a
        completed session.
      parameters:
        - name: session_id
          in: path
          description: Unique identifier for the session
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Complete session result data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SessionResultResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    SessionResultResponse:
      type: object
      description: Response schema for session result data
      required:
        - status
        - result
      properties:
        status:
          type: string
          description: Current status of the session
        result:
          description: The output result of the session execution
        error_message:
          type: string
          description: Error message if the session failed
          nullable: true
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string

````