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

# Create Scenario Improvement Session

> Create a scenario-improvement session — a persistent container for a multi-step `scenarios_agent_create` improvement loop.



## OpenAPI

````yaml post /test_framework/v1/scenario-improvement-sessions/
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/:
    post:
      tags:
        - test_framework
      description: Create a new ViewSet
      operationId: scenario-improvement-sessions-create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScenarioImprovementSessionCreate'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ScenarioImprovementSessionCreate'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ScenarioImprovementSessionCreate'
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScenarioImprovementSessionCreate'
          description: ''
      security:
        - api_key: []
components:
  schemas:
    ScenarioImprovementSessionCreate:
      type: object
      description: ''
      properties:
        id:
          type: integer
          readOnly: true
        project:
          type:
            - integer
            - 'null'
        scenario_ids:
          readOnly: true
          description: List of scenario IDs being improved in this session
        title:
          type: string
          description: Title for the session (auto-generated from first user message)
          maxLength: 255
        scenario_selection:
          writeOnly: true
  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.

````