For the complete documentation index, see llms.txt. This page is also available as Markdown.

Probe

Get all Predefined Probes grouped by Probe category.

get
/api/probe/predefined

This endpoint retrieves all predefined probes available, grouped by their categories.

Authorizations
X-Api-KeystringRequired

API Key for authentication

Responses
200

OK

application/json
probeCategoryIdinteger · int32Required
probeCategoryNamestring · nullableRequired
get/api/probe/predefined
GET /api/probe/predefined HTTP/1.1
Host: api.probe.splx.ai
X-Api-Key: YOUR_API_KEY
Accept: */*
[
  {
    "probeCategoryId": 1,
    "probeCategoryName": "text",
    "predefinedProbes": [
      {
        "id": 1,
        "name": "text",
        "definition": "text",
        "attackScenarioExample": "text",
        "templateUserInputConfig": [],
        "active": true,
        "type": "text",
        "multimodal": [
          "text"
        ],
        "tags": [
          {
            "name": "text",
            "color": "text"
          }
        ]
      }
    ]
  }
]

Last updated

Was this helpful?