Skip to content

Review API

The Review API provides endpoints for human-in-the-loop review of Squad’s outputs, accessible through both the review panel and programmatic API calls.

What to Expect

  • GET /api/v1/review/{session_id}/pending: pending review items for a session
  • POST /api/v1/review/{session_id}/approve: approve a review item
  • POST /api/v1/review/{session_id}/reject: reject a review item with reason
  • GET /api/v1/review/history: full review history with filters
  • GET /api/v1/review/{session_id}/memories: session memories and context
  • Review item data model and state transitions

Next Steps