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

> Returns only the status information of a session without the detailed execution data. This lightweight endpoint is useful for polling the current state of a session.



## OpenAPI

````yaml GET /api/get_session_status/{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_status/{session_id}:
    get:
      description: >-
        Returns only the status information of a session without the detailed
        execution data. This lightweight endpoint is useful for polling the
        current state of a session.
      parameters:
        - name: session_id
          in: path
          description: Unique identifier for the session
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Session status information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SessionStatusResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    SessionStatusResponse:
      type: object
      description: Response schema for session status information
      required:
        - status
      properties:
        status:
          type: string
          description: Current status of the session
          enum:
            - initializing
            - running
            - complete
            - failed
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string

````