Skip to main content
POST
/
v3
/
evals
/
score
Score inputs using an evaluator
curl --request POST \
  --url https://{host}/v3/evals/score \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "evaluator_name": "<string>",
  "parameters": {
    "key1": "value1",
    "key2": "value2"
  },
  "inputs": {
    "key1": "value1",
    "key2": "value2"
  }
}
'
{
  "api_version": "3.0",
  "kind": "NORMAL",
  "data": {
    "scores": [
      {
        "name": "<string>",
        "value": 123,
        "label": "<string>",
        "reasoning": "<string>"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://handbook.fiddler.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request body for scoring inputs

evaluator_name
string
required

Name of the evaluator

parameters
object
required

JSON object containing parameters for the evaluator

Example:
{ "key1": "value1", "key2": "value2" }
inputs
object
required

JSON object containing the inputs to be evaluated

Example:
{ "key1": "value1", "key2": "value2" }

Response

Scores returned successfully

Response object for standard API responses.

api_version
enum<string>
default:3.0

API version.

Available options:
2.0,
3.0
kind
enum<string>
default:NORMAL

Type of response, indicating a normal response.

Available options:
NORMAL
data
object