Skip to main content
POST /api/v1/telemetry is the post-execution ingest path for detective telemetry and analysis. It records what happened after an interaction completes. It does not block tool calls or replace pre-execution control. Use POST /api/v1/evaluate before dispatch when you need an ALLOW or DENY decision.

Request

Public examples use the production host. Use the endpoint and credentials issued to your environment. Do not commit real keys to source control.

Request fields

Response

Response fields

What the endpoint does

For authenticated telemetry requests, the backend can:
  • validate x-api-key and x-client-id
  • apply compliance redaction to prompt and completion data when configured
  • run post-execution guard analysis on the sanitized interaction
  • store telemetry, compliance metadata, and analysis records
  • create incidents and alerts for detected threats when those integrations are configured
/api/v1/evaluate is the pre-execution enforcement path. /api/v1/telemetry is detective only: observability and post-execution analysis. Telemetry ingest does not block unsafe tool dispatch.
See API Overview, Evaluate, and Onboarding.