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

# Get Experiment Score

> Retrieve a specific score for an experiment request

<Warning>
  <strong>For users in the European Union:</strong> Please use `eu.api.helicone.ai` instead of
  `api.helicone.ai`.
</Warning>


## OpenAPI

````yaml get /v2/experiment/{experimentId}/{requestId}/{scoreKey}
openapi: 3.0.0
info:
  title: helicone-api
  version: 1.0.0
  license:
    name: MIT
  contact: {}
servers:
  - url: https://api.helicone.ai/
  - url: http://localhost:8585/
security: []
paths:
  /v2/experiment/{experimentId}/{requestId}/{scoreKey}:
    get:
      tags:
        - Experiment
      operationId: GetExperimentScore
      parameters:
        - in: path
          name: experimentId
          required: true
          schema:
            type: string
        - in: path
          name: requestId
          required: true
          schema:
            type: string
        - in: path
          name: scoreKey
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_ScoreV2-or-null.string_'
      security:
        - api_key: []
components:
  schemas:
    Result_ScoreV2-or-null.string_:
      anyOf:
        - $ref: '#/components/schemas/ResultSuccess_ScoreV2-or-null_'
        - $ref: '#/components/schemas/ResultError_string_'
    ResultSuccess_ScoreV2-or-null_:
      properties:
        data:
          allOf:
            - $ref: '#/components/schemas/ScoreV2'
          nullable: true
        error:
          type: number
          enum:
            - null
          nullable: true
      required:
        - data
        - error
      type: object
      additionalProperties: false
    ResultError_string_:
      properties:
        data:
          type: number
          enum:
            - null
          nullable: true
        error:
          type: string
      required:
        - data
        - error
      type: object
      additionalProperties: false
    ScoreV2:
      properties:
        valueType:
          type: string
        value:
          anyOf:
            - type: number
              format: double
            - type: string
              format: date-time
            - type: string
        max:
          type: number
          format: double
        min:
          type: number
          format: double
      required:
        - valueType
        - value
        - max
        - min
      type: object
      additionalProperties: false
  securitySchemes:
    api_key:
      type: apiKey
      name: Authorization
      in: header
      description: 'Bearer token authentication. Format: ''Bearer YOUR_API_KEY'''

````