> ## 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 Rlhf Sample Scores

> Per-axis aggregate scores (BT strength + CI, Elo, win/loss) for absolute-score targets.



## OpenAPI

````yaml /openapi.json get /v1/rlhf/experiments/{experiment_id}/sample-scores
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/rlhf/experiments/{experiment_id}/sample-scores:
    get:
      tags:
        - RLHF
      summary: Get Rlhf Sample Scores
      description: >-
        Per-axis aggregate scores (BT strength + CI, Elo, win/loss) for
        absolute-score targets.
      operationId: >-
        get_rlhf_sample_scores_v1_rlhf_experiments__experiment_id__sample_scores_get
      parameters:
        - in: path
          name: experiment_id
          required: true
          schema:
            format: uuid
            title: Experiment Id
            type: string
        - description: Restrict to a single axis.
          in: query
          name: axis_key
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Restrict to a single axis.
            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/RlhfSampleScoresResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - BearerAuth: []
        - ApiKeyAuth: []
components:
  schemas:
    RlhfSampleScoresResponse:
      properties:
        axes:
          items:
            type: string
          title: Axes
          type: array
        experiment_id:
          title: Experiment Id
          type: string
        scores:
          items:
            $ref: '#/components/schemas/RlhfSampleScore'
          title: Scores
          type: array
        total:
          title: Total
          type: integer
        truncated:
          title: Truncated
          type: boolean
      required:
        - experiment_id
        - axes
        - total
        - truncated
        - scores
      title: RlhfSampleScoresResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    RlhfSampleScore:
      description: >-
        Per-axis aggregate score for a sample (for an absolute-score training
        target).
      properties:
        anchor_value:
          anyOf:
            - type: string
            - type: 'null'
          title: Anchor Value
        axis_key:
          title: Axis Key
          type: string
        bt_ci_lower:
          anyOf:
            - type: number
            - type: 'null'
          title: Bt Ci Lower
        bt_ci_upper:
          anyOf:
            - type: number
            - type: 'null'
          title: Bt Ci Upper
        bt_strength:
          anyOf:
            - type: number
            - type: 'null'
          title: Bt Strength
        candidate_key:
          anyOf:
            - type: string
            - type: 'null'
          title: Candidate Key
        comparisons:
          default: 0
          title: Comparisons
          type: integer
        elo:
          anyOf:
            - type: integer
            - type: 'null'
          title: Elo
        file_path:
          anyOf:
            - type: string
            - type: 'null'
          title: File Path
        losses:
          default: 0
          title: Losses
          type: integer
        parameters:
          additionalProperties: true
          title: Parameters
          type: object
        sample_id:
          title: Sample Id
          type: string
        wins:
          default: 0
          title: Wins
          type: integer
      required:
        - sample_id
        - axis_key
      title: RlhfSampleScore
      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

````