Skip to main content
GET
/
v1
/
agents
/
threads
/
{threadId}
/
evaluations
List evaluations for a thread
curl --request GET \
  --url https://api.devic.ai/v1/agents/threads/{threadId}/evaluations \
  --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 whose evaluations should be listed

Response

List of evaluations for the thread

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