curl --request GET \
--url https://api.helicone.ai/v2/experiment/{experimentId}/evaluators \
--header 'authorization: <api-key>'
{
"data": [
{
"id": "<string>",
"created_at": "<string>",
"scoring_type": "<string>",
"llm_template": "<any>",
"organization_id": "<string>",
"updated_at": "<string>",
"name": "<string>",
"code_template": "<any>",
"last_mile_config": "<any>"
}
]
}
Retrieve all evaluators associated with an experiment using v2 API
curl --request GET \
--url https://api.helicone.ai/v2/experiment/{experimentId}/evaluators \
--header 'authorization: <api-key>'
{
"data": [
{
"id": "<string>",
"created_at": "<string>",
"scoring_type": "<string>",
"llm_template": "<any>",
"organization_id": "<string>",
"updated_at": "<string>",
"name": "<string>",
"code_template": "<any>",
"last_mile_config": "<any>"
}
]
}
eu.api.helicone.ai
instead of
api.helicone.ai
.Ok
The response is of type object
.
Was this page helpful?