# Submit Score

> Submit a score for a specific request.

`POST /v1/request/{requestId}/score`

import EUAPIWarning from "/snippets/eu-api-warning.mdx";

<EUAPIWarning />

## OpenAPI

````yaml swagger.json post /v1/request/{requestId}/score
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/
paths:
  /v1/request/{requestId}/score:
    post:
      operationId: AddScores
      responses:
        "200":
          description: Ok
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Result_null.string_"
      tags:
        - Request
      security:
        - api_key: []
      parameters:
        - in: path
          name: requestId
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/ScoreRequest"
components:
  schemas:
    ResultError_string_:
      properties:
        data:
          type: number
          enum:
            - null
          nullable: true
        error:
          type: string
      required:
        - data
        - error
      type: object
      additionalProperties: false
    ResultSuccess_null_:
      properties:
        data:
          type: number
          enum:
            - null
          nullable: true
        error:
          type: number
          enum:
            - null
          nullable: true
      required:
        - data
        - error
      type: object
      additionalProperties: false
    Result_null.string_:
      anyOf:
        - $ref: "#/components/schemas/ResultSuccess_null_"
        - $ref: "#/components/schemas/ResultError_string_"
    Record_string.number-or-boolean-or-undefined_:
      properties: {}
      additionalProperties:
        anyOf:
          - type: number
            format: double
          - type: boolean
      type: object
      description: Construct a type with a set of properties K of type T
    Scores:
      $ref: "#/components/schemas/Record_string.number-or-boolean-or-undefined_"
    ScoreRequest:
      properties:
        scores:
          $ref: "#/components/schemas/Scores"
      required:
        - scores
      type: object
      additionalProperties: false
````
