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>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.cotool.ai/llms.txt

Use this file to discover all available pages before exploring further.

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

200 - application/json

Successful response

toolCalls
object[]
required

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