List logs
Supports webhook-token auth for integrations and session auth for the dashboard. The response key is `executions` for backwards compatibility, but the records are logs.
Workspace webhook token from Settings -> Integrations.
In: header
Query Parameters
When true, only returns undecided flagged or error logs.
"pending" | "pass" | "flagged" | "error"Searches project, task, model, session, subject, and actor fields.
Comma-separated tag list.
date-timedate-time"timestamp" | "projectName" | "model" | "status" | "latencyMs" | "costUsd""asc" | "desc"1 <= value1 <= value <= 100Response Body
application/json
application/json
curl -X GET "https://example.com/api/logs"{
"executions": [
{
"id": "string",
"timestamp": "2019-08-24T14:15:22Z",
"projectId": "string",
"projectName": "string",
"taskName": "string",
"sessionId": "string",
"subjectId": "string",
"actorId": "string",
"model": "string",
"status": "pending",
"latencyMs": 0,
"costUsd": 0,
"verdict": "pass",
"confidenceScore": 0,
"humanDecision": "approved",
"decidedAt": "2019-08-24T14:15:22Z",
"decidedBy": "string",
"decisionSource": "string",
"callbackUrl": "string",
"metadata": {},
"tags": [
"string"
],
"input": "string",
"output": "string",
"explanation": "string",
"sessionTurnCount": 0
}
],
"total": 0,
"page": 0,
"limit": 0,
"summary": {
"totalRuns": 0,
"failuresDetected": 0,
"pendingReviews": 0,
"successRate": 0
}
}{
"error": "string",
"code": "string",
"fields": {
"property1": "string",
"property2": "string"
}
}List preset model names
Public helper endpoint used by the Make custom app.
Submit an AI output for evaluation
Default mode is async (`sync` omitted or `false`): the log is stored and the endpoint responds immediately with HTTP `202` and `status: pending` while evaluation runs in the background. Pass `sync: true` to evaluate inline and return the full verdict with HTTP `200`. Rate limit: 60 requests per minute per workspace token. Exceeding the limit returns `429` with a `Retry-After: 60` header.