> ## Documentation Index
> Fetch the complete documentation index at: https://docs.runflow.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List reviews with filters (SDK)



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/runtime/v1/observability/reviews
openapi: 3.0.0
info:
  title: Runflow Runtime API
  description: >-
    Programmatic surface for the Runflow platform — used by the SDK, the CLI,
    the execution engine, and any server-to-server caller. Authenticate with an
    `x-api-key` header (or `Authorization: Bearer ...`).
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.runflow.ai
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
tags: []
paths:
  /api/v1/runtime/v1/observability/reviews:
    get:
      tags:
        - Runtime API - Observability
      summary: List reviews with filters (SDK)
      operationId: RuntimeObservabilityController_listExecutionReviews
      parameters:
        - name: agentId
          required: false
          in: query
          description: Agent ID to filter reviews
          schema:
            type: string
        - name: status
          required: false
          in: query
          description: Filter by status
          schema:
            enum:
              - pending_review
              - in_progress
              - resolved
              - wont_fix
            type: string
        - name: rating
          required: false
          in: query
          description: Filter by rating
          schema:
            enum:
              - good
              - bad
              - needs_improvement
            type: string
        - name: priority
          required: false
          in: query
          description: Filter by priority
          schema:
            enum:
              - low
              - medium
              - high
              - critical
            type: string
        - name: search
          required: false
          in: query
          description: Search in comments (full-text search)
          schema:
            example: horário
            type: string
        - name: dateFrom
          required: false
          in: query
          description: Filter from date (ISO 8601)
          schema:
            example: '2025-12-01T00:00:00Z'
            type: string
        - name: dateTo
          required: false
          in: query
          description: Filter to date (ISO 8601)
          schema:
            example: '2025-12-15T23:59:59Z'
            type: string
        - name: limit
          required: false
          in: query
          description: Limit of results per page
          schema:
            minimum: 1
            maximum: 100
            default: 50
            type: number
        - name: offset
          required: false
          in: query
          description: Offset for pagination
          schema:
            minimum: 0
            default: 0
            type: number
      responses:
        '200':
          description: Reviews retrieved
      security:
        - bearer: []
components: {}

````