Skip to main content
GET
/
api
/
detections
/
hits
/
{hitId}
/
cited-tool-calls
cURL
curl -X GET "https://app.cotool.ai/api/detections/hits/:hitId/cited-tool-calls" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
{
  "toolCalls": [
    {
      "toolUseId": "<string>",
      "toolName": "<string>",
      "toolDisplayName": "<string>",
      "briefActionDescription": "<string>",
      "visibleActionInput": "<string>",
      "frontendOutput": "<string>",
      "timestamp": 123,
      "input": "<unknown>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication for programmatic access. Include your API key in the Authorization header as: Bearer your_api_key_here

Path Parameters

hitId
string<uuid>
required

Detection hit UUID

Response

Successful response

toolCalls
object[]
required

Tool calls referenced by the hit's verifierEvidence citations, in chronological order.