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

# Get Trace Score Analytics Summary

> Aggregated trace score summary per metric.

Auth: ``Bearer`` + ``X-Project-ID`` | ``X-API-Key`` + ``X-Project-Name``



## OpenAPI

````yaml /openapi.json get /evaluations/analytics/trace-scores/summary
openapi: 3.1.0
info:
  title: PandaProbe API
  description: >-
    Open-source agent engineering platform — trace LLM calls, evaluate agent
    performance, and monitor AI pipelines.
  version: 0.1.0
  contact:
    name: PandaProbe
    url: https://www.pandaprobe.com
    email: support@pandaprobe.com
servers:
  - url: https://api.pandaprobe.com
    description: Production
security: []
tags:
  - name: health
    description: Service health and readiness probes.
  - name: user
    description: Authenticated user profile.
  - name: traces
    description: Trace ingestion, querying, updating, and analytics.
  - name: sessions
    description: Session-based trace aggregation and analytics.
  - name: evaluations
    description: Evaluation runs, scores, analytics, and monitoring.
  - name: organizations
    description: Organization management and membership.
  - name: projects
    description: Project CRUD within organizations.
  - name: api-keys
    description: API key lifecycle management.
paths:
  /evaluations/analytics/trace-scores/summary:
    get:
      tags:
        - evaluations
      summary: Get Trace Score Analytics Summary
      description: |-
        Aggregated trace score summary per metric.

        Auth: ``Bearer`` + ``X-Project-ID`` | ``X-API-Key`` + ``X-Project-Name``
      operationId: >-
        get_trace_score_analytics_summary_evaluations_analytics_trace_scores_summary_get
      parameters:
        - name: date_from
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: ISO 8601 datetime. Include scores created on or after.
            title: Date From
          description: ISO 8601 datetime. Include scores created on or after.
        - name: date_to
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: ISO 8601 datetime. Include scores created before (exclusive).
            title: Date To
          description: ISO 8601 datetime. Include scores created before (exclusive).
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScoreSummaryItem'
                title: >-
                  Response Get Trace Score Analytics Summary Evaluations
                  Analytics Trace Scores Summary Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
        - ApiKey: []
        - ProjectID: []
        - ProjectName: []
components:
  schemas:
    ScoreSummaryItem:
      properties:
        metric_name:
          type: string
          title: Metric Name
        avg_score:
          anyOf:
            - type: number
            - type: 'null'
          title: Avg Score
        min_score:
          anyOf:
            - type: number
            - type: 'null'
          title: Min Score
        max_score:
          anyOf:
            - type: number
            - type: 'null'
          title: Max Score
        median_score:
          anyOf:
            - type: number
            - type: 'null'
          title: Median Score
        success_count:
          type: integer
          title: Success Count
        failed_count:
          type: integer
          title: Failed Count
        latest_score_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Latest Score At
      type: object
      required:
        - metric_name
        - avg_score
        - min_score
        - max_score
        - median_score
        - success_count
        - failed_count
        - latest_score_at
      title: ScoreSummaryItem
      description: Aggregated score summary for one metric.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
    ApiKey:
      type: apiKey
      in: header
      name: X-API-Key
    ProjectID:
      type: apiKey
      in: header
      name: X-Project-ID
    ProjectName:
      type: apiKey
      in: header
      name: X-Project-Name

````