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

# List per-case results for a run



## OpenAPI

````yaml /api-reference/openapi.json get /v1/knowledge-base/evals/runs/{run_id}/results
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/knowledge-base/evals/runs/{run_id}/results:
    get:
      tags:
        - knowledge-base-evals
      summary: List per-case results for a run
      operationId: listKBEvalRunResults
      parameters:
        - name: run_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Run Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Limit
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Cursor
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CursorPage_KBEvalCaseResultResponse_'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    CursorPage_KBEvalCaseResultResponse_:
      properties:
        items:
          items:
            $ref: '#/components/schemas/KBEvalCaseResultResponse'
          type: array
          title: Items
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
        has_more:
          type: boolean
          title: Has More
      type: object
      required:
        - items
        - has_more
      title: CursorPage[KBEvalCaseResultResponse]
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    KBEvalCaseResultResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        run_id:
          type: string
          format: uuid
          title: Run Id
        test_case_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Test Case Id
        question_snapshot:
          type: string
          title: Question Snapshot
        expected_answer_snapshot:
          type: string
          title: Expected Answer Snapshot
        retrieved_chunks:
          items:
            $ref: '#/components/schemas/KBEvalRetrievedChunk'
          type: array
          title: Retrieved Chunks
        generated_answer:
          anyOf:
            - type: string
            - type: 'null'
          title: Generated Answer
        answer_score:
          anyOf:
            - type: integer
            - type: 'null'
          title: Answer Score
        completeness_score:
          anyOf:
            - type: integer
            - type: 'null'
          title: Completeness Score
        passed:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Passed
        judge_reasoning:
          anyOf:
            - type: string
            - type: 'null'
          title: Judge Reasoning
        judge_raw_output:
          anyOf:
            - type: string
            - type: 'null'
          title: Judge Raw Output
        criteria_raw_output:
          anyOf:
            - type: string
            - type: 'null'
          title: Criteria Raw Output
        criteria_results:
          items:
            $ref: '#/components/schemas/KBEvalCriterionResult'
          type: array
          title: Criteria Results
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
        retrieval_latency_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Retrieval Latency Ms
        generation_latency_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Generation Latency Ms
        judge_latency_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Judge Latency Ms
        generation_input_tokens:
          anyOf:
            - type: integer
            - type: 'null'
          title: Generation Input Tokens
        generation_output_tokens:
          anyOf:
            - type: integer
            - type: 'null'
          title: Generation Output Tokens
        generation_cost_usd:
          anyOf:
            - type: number
            - type: 'null'
          title: Generation Cost Usd
        judge_input_tokens:
          anyOf:
            - type: integer
            - type: 'null'
          title: Judge Input Tokens
        judge_output_tokens:
          anyOf:
            - type: integer
            - type: 'null'
          title: Judge Output Tokens
        judge_cost_usd:
          anyOf:
            - type: number
            - type: 'null'
          title: Judge Cost Usd
        created_at:
          type: string
          format: date-time
          title: Created At
        content_redacted:
          type: boolean
          title: Content Redacted
          default: false
      type: object
      required:
        - id
        - run_id
        - test_case_id
        - question_snapshot
        - expected_answer_snapshot
        - generated_answer
        - answer_score
        - completeness_score
        - passed
        - judge_reasoning
        - judge_raw_output
        - criteria_raw_output
        - error_message
        - retrieval_latency_ms
        - generation_latency_ms
        - judge_latency_ms
        - generation_input_tokens
        - generation_output_tokens
        - generation_cost_usd
        - judge_input_tokens
        - judge_output_tokens
        - judge_cost_usd
        - created_at
      title: KBEvalCaseResultResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    KBEvalRetrievedChunk:
      properties:
        chunk_id:
          type: string
          title: Chunk Id
        kb_id:
          type: string
          title: Kb Id
        document_id:
          type: string
          title: Document Id
        version_id:
          type: string
          title: Version Id
        document_title:
          type: string
          title: Document Title
        content_preview:
          type: string
          title: Content Preview
        score:
          type: number
          title: Score
        chunk_index:
          type: integer
          title: Chunk Index
        judged_relevant:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Judged Relevant
        relevance_reasoning:
          anyOf:
            - type: string
            - type: 'null'
          title: Relevance Reasoning
      type: object
      required:
        - chunk_id
        - kb_id
        - document_id
        - version_id
        - document_title
        - content_preview
        - score
        - chunk_index
      title: KBEvalRetrievedChunk
    KBEvalCriterionResult:
      properties:
        criterion:
          type: string
          title: Criterion
        passed:
          type: boolean
          title: Passed
        reasoning:
          anyOf:
            - type: string
            - type: 'null'
          title: Reasoning
      type: object
      required:
        - criterion
        - passed
      title: KBEvalCriterionResult
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````