Skip to main content

GET /api/events

Query recent events.
curl "http://localhost:4360/api/events?limit=20&pattern=eval:*" \
  -H "Authorization: Bearer $TOKEN"

Query Parameters

ParamDescription
limitMax events to return (default: 20)
patternFilter by event type prefix (e.g., eval:, kanban:)

POST /api/events

Publish an event.
curl -X POST http://localhost:4360/api/events \
  -H "Authorization: Bearer $TOKEN" \
  -d '{"type": "custom:my-event", "data": {"key": "value"}}'