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

# Get a list of evaluation runs

> List experiment runs with optional filtering by dataset, status, name, date range, and specific run IDs. Results are paginated and sortable.




## OpenAPI

````yaml https://raw.githubusercontent.com/honeyhiveai/honeyhive-openapi/main/openapi.yaml get /v1/runs
openapi: 3.1.0
info:
  title: HoneyHive Data Plane API
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: 1.2.1
servers:
  - url: https://api.honeyhive.ai
security:
  - BearerAuth: []
tags:
  - name: Charts
    description: >
      Define and manage saved charts. Charts are visualizations that aggregate
      metrics over time with bucketing, filters, and groupings.
  - name: Configurations
    description: >
      Manage prompt configurations, i.e. model parameters, message templates,
      and response settings that can be versioned and deployed without code
      changes.
  - name: Datapoints
    description: >
      Manage individual records inside datasets, including batch creation and
      mapping to source events.
  - name: Datasets
    description: >
      Curate collections of datapoints used as test sets for evaluations and
      experiments.
  - name: Events
    description: >
      Read and write trace events. Events are the spans that capture every step
      of an AI application's execution.
  - name: Experiments
    description: >
      Run, retrieve, and compare evaluation runs to measure how prompt or
      configuration changes affect agent performance.
  - name: Metric Versions
    description: >
      Snapshot, list, and deploy versions of a metric's definition so changes
      can be reviewed and rolled back without losing history.
  - name: Metrics
    description: >
      Define and run evaluators, i.e. automated quality checks that score traces
      against criteria like accuracy, safety, or correctness.
  - name: Queues
    description: >
      Manage annotation queues for human review of traces, turning expert
      feedback into labeled datasets.
  - name: Sessions
    description: >
      Group related trace events into sessions, the top-level container for a
      multi-step or multi-service AI interaction.
paths:
  /v1/runs:
    get:
      tags:
        - Experiments
      summary: Get a list of evaluation runs
      description: >
        List experiment runs with optional filtering by dataset, status, name,
        date range, and specific run IDs. Results are paginated and sortable.
      operationId: getRuns
      parameters:
        - in: query
          name: dataset_id
          required: false
          schema:
            type: string
          description: Filter by dataset ID
        - in: query
          name: page
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
          description: Page number for pagination
        - in: query
          name: limit
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 20
          description: Number of results per page
        - in: query
          name: run_ids
          required: false
          schema:
            type: array
            items:
              type: string
          description: List of specific run IDs to fetch
        - in: query
          name: name
          required: false
          schema:
            type: string
          description: Filter by run name
        - in: query
          name: status
          required: false
          schema:
            type: string
            enum:
              - pending
              - completed
              - failed
              - cancelled
              - running
          description: Filter by run status
        - in: query
          name: dateRange
          required: false
          schema:
            oneOf:
              - type: string
              - $ref: '#/components/schemas/GetRunsDateRangeOneOf1'
          description: Filter by date range
        - in: query
          name: sort_by
          required: false
          schema:
            type: string
            enum:
              - created_at
              - updated_at
              - name
              - status
            default: created_at
          description: Field to sort by
        - in: query
          name: sort_order
          required: false
          schema:
            type: string
            enum:
              - asc
              - desc
            default: desc
          description: Sort order
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetExperimentRunsResponse'
        '400':
          description: Error fetching evaluations
components:
  schemas:
    GetRunsDateRangeOneOf1:
      type: object
      properties:
        $gte:
          oneOf:
            - type: string
            - type: number
        $lte:
          oneOf:
            - type: string
            - type: number
    GetExperimentRunsResponse:
      type: object
      properties:
        evaluations:
          type: array
          items:
            $ref: '#/components/schemas/ExperimentRunObject'
        pagination:
          $ref: '#/components/schemas/Pagination'
        metrics:
          type: array
          items:
            type: string
      required:
        - evaluations
        - pagination
        - metrics
      description: Response for GET /runs
    ExperimentRunObject:
      type: object
      properties:
        id:
          type: string
        run_id:
          type: string
        name:
          type:
            - string
            - 'null'
        description:
          type:
            - string
            - 'null'
        status:
          type:
            - string
            - 'null'
        metadata:
          type: object
          additionalProperties: {}
        results:
          type: object
          additionalProperties: {}
        metrics:
          type: object
          additionalProperties:
            type: number
        event_ids:
          type: array
          items:
            type: string
        configuration:
          type: object
          additionalProperties: {}
        is_active:
          type: boolean
        created_at:
          anyOf:
            - type: string
            - type: string
              format: date-time
        updated_at:
          anyOf:
            - type: string
            - type: string
              format: date-time
            - type: 'null'
        scope_type:
          type: string
        scope_id:
          type: string
        dataset_id:
          type:
            - string
            - 'null'
      required:
        - id
        - run_id
        - metadata
        - results
        - event_ids
        - configuration
        - is_active
        - created_at
        - scope_type
        - scope_id
    Pagination:
      type: object
      properties:
        page:
          type: integer
          minimum: 1
        limit:
          type: integer
          minimum: 1
        total:
          type: integer
          minimum: 0
        total_unfiltered:
          type: integer
          minimum: 0
        total_pages:
          type: integer
          minimum: 0
        has_next:
          type: boolean
        has_prev:
          type: boolean
      required:
        - page
        - limit
        - total
        - total_unfiltered
        - total_pages
        - has_next
        - has_prev
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````