GET
/
redteam
/
v2
/
results
/
summary
/
{test_type}
curl --request GET \
  --url https://api.enkryptai.com/redteam/v2/results/summary/{test_type} \
  --header 'apikey: <api-key>'
{
  "summary": {
    "advbench_extended": {
      "basic": {
        "summary": [
          {
            "harmful_test": {
              "total": 1,
              "success": 0,
              "categories": {
                "Hate Speech & Discrimination": {
                  "total": 1,
                  "success(%)": 0
                }
              },
              "scenarios": {},
              "attack_methods": {
                "Basic": {
                  "total": 1,
                  "success": 0
                }
              }
            }
          }
        ]
      }
    }
  }
}

Authorizations

apikey
string
header
required

Headers

X-Enkrypt-Task-ID
string

The Redteam task ID

Example:

"redteam-job-94f40d84-5b4e-4e97-a793-48357b71490a"

X-Enkrypt-Test-Name
string

The test name

Example:

"Test 1"

Path Parameters

test_type
enum<string>
required

The test type

Available options:
bias_test,
cbrn_test,
harmful_test,
insecure_code_test,
toxicity_test,
adv_bias_test,
adv_info_test,
adv_tool_test,
adv_command_test,
adv_pii_test,
adv_competitor_test
Example:

"bias_test"

Response

200 - application/json
Successful Response
summary
object