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

# List evaluations

> Returns agent evaluations.



## OpenAPI

````yaml rulebase_api2_public_openapi.json GET /evaluations
openapi: 3.1.0
info:
  title: Rulebase API v2
  version: 2.0.0
  description: Read data from Rulebase using an organization API key.
servers:
  - url: https://api2.rulebase.co
    description: US
  - url: https://eu.api2.rulebase.co
    description: EU
security: []
paths:
  /evaluations:
    get:
      tags:
        - Evaluations
      summary: List evaluations
      description: Returns agent evaluations.
      operationId: listEvaluations
      parameters:
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
          required: false
          name: limit
          in: query
        - schema:
            type: string
          required: false
          name: cursor
          in: query
        - schema:
            type: string
            minLength: 1
          required: false
          name: source_channel
          in: query
        - schema:
            type: string
            minLength: 1
          required: false
          name: channel_types
          in: query
        - schema:
            type: string
            format: date-time
          required: false
          name: updated_after
          in: query
        - schema:
            type: string
            format: date-time
          required: false
          name: updated_before
          in: query
      responses:
        '200':
          description: Active agent evaluations
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        source:
                          type: string
                        agent:
                          type: object
                          properties:
                            id:
                              type: string
                            name:
                              type: string
                              nullable: true
                            email:
                              type: string
                              nullable: true
                          required:
                            - id
                            - name
                            - email
                        score:
                          type: number
                          nullable: true
                          minimum: 0
                          maximum: 100
                        created_at:
                          type: string
                          format: date-time
                        updated_at:
                          type: string
                          format: date-time
                        conversation:
                          type: object
                          nullable: true
                          properties:
                            id:
                              type: string
                            external_id:
                              type: string
                              nullable: true
                            field_values:
                              type: array
                              items:
                                type: object
                                properties:
                                  id:
                                    type: string
                                  field:
                                    type: object
                                    properties:
                                      id:
                                        type: string
                                      key:
                                        type: string
                                      name:
                                        type: string
                                    required:
                                      - id
                                      - key
                                      - name
                                  value:
                                    nullable: true
                                required:
                                  - id
                                  - field
                          required:
                            - id
                            - external_id
                            - field_values
                        work_item:
                          type: object
                          nullable: true
                          properties:
                            id:
                              type: string
                              format: uuid
                            external_id:
                              type: string
                            type:
                              type: string
                          required:
                            - id
                            - external_id
                            - type
                      required:
                        - id
                        - source
                        - agent
                        - score
                        - created_at
                        - updated_at
                        - conversation
                        - work_item
                  meta:
                    type: object
                    properties:
                      page:
                        type: object
                        properties:
                          next:
                            type: string
                            nullable: true
                          limit:
                            type: integer
                        required:
                          - next
                          - limit
                    required:
                      - page
                required:
                  - data
                  - meta
        '400':
          description: Invalid filters or pagination cursor
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Rulebase organization API key

````