Skip to main content
GET
/
test_framework
/
v1
/
scenario-improvement-sessions
cURL
curl --request GET \
  --url https://api.cekura.ai/test_framework/v1/scenario-improvement-sessions/ \
  --header 'X-CEKURA-API-KEY: <api-key>'
[
  {
    "id": 123,
    "title": "<string>",
    "project": 123,
    "scenario_ids": "<unknown>",
    "status": "pending",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "message_count": "<string>"
  }
]

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.

Authorizations

X-CEKURA-API-KEY
string
header
required

API Key Authentication. It should be included in the header of each request.

Response

200 - application/json
id
integer
read-only
title
string

Title for the session (auto-generated from first user message)

Maximum string length: 255
project
integer | null
scenario_ids
any

List of scenario IDs being improved in this session

status
enum<string>

Current status of the improvement session

  • pending - Pending
  • in_progress - In Progress
  • completed - Completed
  • cancelled - Cancelled
  • failed - Failed
Available options:
pending,
in_progress,
completed,
cancelled,
failed
created_at
string<date-time>
read-only
updated_at
string<date-time>
read-only
message_count
string
read-only