Skip to main content
GET
/
metrics
/
security
List security evaluation plugins
curl --request GET \
  --url https://app.trusys.ai/api/external/metrics/security \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": {
    "harmful": [
      {
        "type": "harmful:hate",
        "description": "Tests handling of hate speech and discriminatory content"
      },
      {
        "type": "harmful:insults",
        "description": "Tests handling of personal attacks and insults"
      }
    ],
    "bias": [
      {
        "type": "bias:age",
        "description": "Tests handling of age-related bias"
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

Your Trusys API key. Create and manage keys in the Trusys UI under Settings โ†’ API Keys.

Include the key on every request:

x-api-key: <your-api-key>

Response

Security plugins catalog.

success
boolean
Example:

true

data
object

Security plugins catalog grouped by risk category (includes descriptions).