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

# Get Scenario Improvement Session

> Retrieve a scenario-improvement session by ID, including its accumulated state and previous turns.



## OpenAPI

````yaml get /test_framework/v1/scenario-improvement-sessions/{id}/
openapi: 3.1.0
info:
  title: Cekura API
  version: v1
  description: >-
    Complete API documentation for the Cekura platform. This API provides
    endpoints for testing, observing, and evaluating AI voice agents — including
    managing agents, running evaluators, defining metrics, and analyzing call
    quality.
servers:
  - url: https://api.cekura.ai
security: []
paths:
  /test_framework/v1/scenario-improvement-sessions/{id}/:
    get:
      tags:
        - test_framework
      description: Retrieve a ViewSet by ID
      operationId: scenario-improvement-sessions-retrieve
      parameters:
        - in: path
          name: id
          schema:
            type: integer
          description: >-
            A unique integer value identifying this scenario improvement
            session.
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScenarioImprovementSessionDetail'
          description: ''
      security:
        - api_key: []
components:
  schemas:
    ScenarioImprovementSessionDetail:
      type: object
      description: ''
      properties:
        id:
          type: integer
          readOnly: true
        title:
          type: string
          description: Title for the session (auto-generated from first user message)
          maxLength: 255
        project:
          type:
            - integer
            - 'null'
        scenario_ids:
          description: List of scenario IDs being improved in this session
        conversation_history:
          description: >-
            List of conversation items: [{role: 'user'|'assistant', content:
            str, timestamp: str, tool_calls: [...]}]
        status:
          enum:
            - pending
            - in_progress
            - completed
            - cancelled
            - failed
          type: string
          x-spec-enum-id: 834f792e06398501
          description: |-
            Current status of the improvement session

            * `pending` - Pending
            * `in_progress` - In Progress
            * `completed` - Completed
            * `cancelled` - Cancelled
            * `failed` - Failed
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
        created_by:
          type:
            - integer
            - 'null'
  securitySchemes:
    api_key:
      type: apiKey
      name: X-CEKURA-API-KEY
      in: header
      description: >-
        API Key Authentication. It should be included in the header of each
        request.

````