> ## 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 event metrics for an experiment run

> Retrieve event metrics from ClickHouse for a specific experiment run



## OpenAPI

````yaml https://raw.githubusercontent.com/honeyhiveai/honeyhive-openapi/main/openapi.yaml get /v1/runs/{run_id}/metrics
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/{run_id}/metrics:
    get:
      tags:
        - Experiments
      summary: Get event metrics for an experiment run
      description: Retrieve event metrics from ClickHouse for a specific experiment run
      operationId: getExperimentRunMetrics
      parameters:
        - name: run_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Experiment run ID (UUIDv4)
        - name: dateRange
          in: query
          required: false
          schema:
            type: string
          description: Date range filter as JSON string
        - name: filters
          in: query
          required: false
          schema:
            oneOf:
              - type: string
              - type: array
                items:
                  type: object
          description: Optional filters to apply (JSON string or array of filter objects)
      responses:
        '200':
          description: Event metrics retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetExperimentRunMetricsResponse'
        '400':
          description: Error fetching event metrics
components:
  schemas:
    GetExperimentRunMetricsResponse:
      type: object
      properties:
        events:
          type: array
          items:
            $ref: '#/components/schemas/EventMetricData'
        totalEvents:
          type: integer
          description: Total number of events matching the query
      required:
        - events
        - totalEvents
      description: Response for GET /runs/{run_id}/metrics
    EventMetricData:
      type: object
      properties:
        event_name:
          type: string
        event_type:
          type: string
        session_id:
          type: string
        metadata:
          $ref: '#/components/schemas/EventMetricDataMetadata'
        metrics:
          type: object
          additionalProperties:
            anyOf:
              - type: number
              - type: boolean
          description: >-
            Metric name → value, merged from numeric, float, and boolean
            ClickHouse columns
      required:
        - event_name
        - event_type
        - session_id
        - metadata
        - metrics
    EventMetricDataMetadata:
      type: object
      properties:
        datapoint_id:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````