API Reference
Executions
Endpoints to query the execution log.
GET/executions
List executions with filters and pagination.
| Query param | Type | Description |
|---|---|---|
| page | number | Page (default: 1) |
| limit | number | Items per page, max 100 (default: 20) |
| status | string | Filter by: success, failed, fallback |
| schema_id | string | Filter by schema |
json — response
{
"executions": [
{
"id": "cmonavlcs0004ph01ska7i1tq",
"schema_id": "cmonautso0002ph012m23m4au",
"provider": "anthropic",
"model": "claude-sonnet-4-20250514",
"status": "success",
"attempts": 1,
"latency_ms": 743,
"tokens_used": 218,
"output": { ... },
"created_at": "2026-05-01T19:21:39.634Z"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 142,
"pages": 8
}
}
GET/executions/:id
Full detail of an execution including input, output and validation errors.