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

# Get Decision Overview

> Get canonical decision-first standard results for an experiment.



## OpenAPI

````yaml /openapi.json get /v1/experiments/{experiment_id}/decision-overview
openapi: 3.1.0
info:
  description: Customer-owned evaluation lifecycle API.
  title: HeyBee Public API
  version: 1.0.0
servers:
  - description: Production
    url: https://api.heybee.app
security: []
paths:
  /v1/experiments/{experiment_id}/decision-overview:
    get:
      tags:
        - Analytics
      summary: Get Decision Overview
      description: Get canonical decision-first standard results for an experiment.
      operationId: >-
        get_decision_overview_v1_experiments__experiment_id__decision_overview_get
      parameters:
        - in: path
          name: experiment_id
          required: true
          schema:
            format: uuid
            title: Experiment Id
            type: string
        - in: query
          name: axis_key
          required: false
          schema:
            anyOf:
              - maxLength: 64
                minLength: 1
                type: string
              - type: 'null'
            title: Axis Key
        - in: header
          name: authorization
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - in: header
          name: X-API-Key
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DecisionOverviewResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - BearerAuth: []
        - ApiKeyAuth: []
components:
  schemas:
    DecisionOverviewResponse:
      description: Canonical decision-first standard results response.
      properties:
        collection:
          $ref: '#/components/schemas/DecisionOverviewCollectionResponse'
        collection_sufficient:
          title: Collection Sufficient
          type: boolean
        confidence:
          maximum: 100
          minimum: 0
          title: Confidence
          type: number
        evidence:
          $ref: '#/components/schemas/DecisionOverviewEvidenceResponse'
        experiment_id:
          format: uuid
          title: Experiment Id
          type: string
        leader:
          $ref: '#/components/schemas/DecisionOverviewLeaderResponse'
        next_actions:
          items:
            $ref: '#/components/schemas/DecisionOverviewActionResponse'
          title: Next Actions
          type: array
        parameter_insights:
          items:
            type: string
          title: Parameter Insights
          type: array
        variants:
          items:
            $ref: '#/components/schemas/DecisionOverviewVariantResponse'
          title: Variants
          type: array
        why:
          items:
            type: string
          title: Why
          type: array
      required:
        - experiment_id
        - confidence
        - collection_sufficient
        - leader
        - evidence
        - collection
      title: DecisionOverviewResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    DecisionOverviewCollectionResponse:
      description: Collection, readiness, and budget state for standard results.
      properties:
        budget_message:
          title: Budget Message
          type: string
        budget_status:
          title: Budget Status
          type: string
        is_active:
          title: Is Active
          type: boolean
        readiness_state:
          anyOf:
            - type: string
            - type: 'null'
          title: Readiness State
        status:
          title: Status
          type: string
        votes_needed:
          anyOf:
            - type: integer
            - type: 'null'
          title: Votes Needed
      required:
        - status
        - is_active
        - budget_status
        - budget_message
      title: DecisionOverviewCollectionResponse
      type: object
    DecisionOverviewEvidenceResponse:
      description: Standard user evidence summary.
      properties:
        insufficient_data_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Insufficient Data Reason
        label:
          title: Label
          type: string
        output_count:
          title: Output Count
          type: integer
        prompt_count:
          title: Prompt Count
          type: integer
        score:
          maximum: 100
          minimum: 0
          title: Score
          type: number
        vote_count:
          title: Vote Count
          type: integer
      required:
        - label
        - score
        - vote_count
        - output_count
        - prompt_count
      title: DecisionOverviewEvidenceResponse
      type: object
    DecisionOverviewLeaderResponse:
      description: Standard results leader summary.
      properties:
        label:
          anyOf:
            - type: string
            - type: 'null'
          title: Label
        reason:
          title: Reason
          type: string
        sample_id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          title: Sample Id
        status:
          title: Status
          type: string
      required:
        - status
        - reason
      title: DecisionOverviewLeaderResponse
      type: object
    DecisionOverviewActionResponse:
      description: Recommended next action for standard results.
      properties:
        action_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Action Label
        detail:
          title: Detail
          type: string
        href:
          anyOf:
            - type: string
            - type: 'null'
          title: Href
        title:
          title: Title
          type: string
      required:
        - title
        - detail
      title: DecisionOverviewActionResponse
      type: object
    DecisionOverviewVariantResponse:
      description: Compact supporting row for standard results.
      properties:
        id:
          format: uuid
          title: Id
          type: string
        label:
          title: Label
          type: string
        prompt_win_rate:
          anyOf:
            - type: number
            - type: 'null'
          title: Prompt Win Rate
        rank:
          title: Rank
          type: integer
        win_rate:
          anyOf:
            - type: number
            - type: 'null'
          title: Win Rate
      required:
        - id
        - label
        - rank
      title: DecisionOverviewVariantResponse
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: Supabase JWT
      scheme: bearer
      type: http
    ApiKeyAuth:
      in: header
      name: X-API-Key
      type: apiKey

````