API Endpoints
Health Check
GET /health
Returns the health status of the server.
Execute Test Suite
POST /api/v1/tests/execute
Content-Type: application/json
{
"api_key": "your_api_key (optional)",
"suite": {
"name": "Example Suite",
"description": "Suite used as an example",
"environment_name": "production",
"tests": [
{
"id": "test_1",
"test": {
"name": "Example test",
"description": "These are some tests",
"interactions": [
{
"id": "test_1_1",
"user": {
"type": "text",
"text": "hi"
},
"agent": {
"validate": [
{
"type": "contains",
"value": "hello"
}
]
}
}
]
}
}
]
}
}
Response:
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"status": "running",
"started_at": "2023-01-01T00:00:00Z",
"logs": ["Test execution started"]
}
Executes a test suite asynchronously and returns an execution ID for tracking. The suite configuration and tests are now embedded directly in the request body, making the API more HTTP-friendly and eliminating the need for file system access.
Get Test Status
GET /api/v1/tests/status/{execution_id}
Response:
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"status": "completed",
"started_at": "2023-01-01T00:00:00Z",
"completed_at": "2023-01-01T00:05:00Z",
"logs": [
"Starting test suite execution...",
"Running Test ID: example_test",
"Test suite execution completed successfully"
]
}
Retrieves the current status and logs of a test execution.
System Information
GET /api/v1/system/info
Response:
{
"version": "1.0.0",
"go_version": "go1.20.0",
"os": "linux",
"arch": "amd64"
}
Returns system information about the running server instance.
OpenAPI/Swagger Documentation
Once the server is running, you can access the interactive API documentation at:
http://localhost:8080/swagger/index.html
Updated about 8 hours ago