API Reference

Executions

Endpoints to query the execution log.


GET/executions

List executions with filters and pagination.

Query paramTypeDescription
pagenumberPage (default: 1)
limitnumberItems per page, max 100 (default: 20)
statusstringFilter by: success, failed, fallback
schema_idstringFilter 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.