Skip to main content
GET
/
v1
/
agents
/
threads
/
{threadId}
/
evaluations
/
{evaluationId}
Get a specific evaluation by ID
curl --request GET \
  --url https://api.devic.ai/v1/agents/threads/{threadId}/evaluations/{evaluationId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "threadId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "score": 123,
  "status": "PENDING",
  "feedback": "<string>",
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Use JWT token for authentication

Path Parameters

threadId
string<uuid>
required

UUID of the thread associated with the evaluation

evaluationId
string<uuid>
required

UUID of the evaluation to retrieve

Response

Evaluation details retrieved successfully

id
string<uuid>
required

Unique identifier for the evaluation

threadId
string<uuid>
required

Identifier for the evaluated thread

score
number<float>
required

Evaluation score between 0 and 1

status
enum<string>
required

Status of an evaluation run

Available options:
PENDING,
COMPLETED,
FAILED
feedback
string

Detailed feedback or explanation of the evaluation

createdAt
string<date-time>

Timestamp of when the evaluation was created