Skip to main content
GET
/
api
/
v3
/
evaluations
/
{evaluation_id}
/
status
Get Evaluation Status
curl --request GET \
  --url https://api.nugen.in/api/v3/evaluations/{evaluation_id}/status \
  --header 'Authorization: Bearer <token>'
{
  "evaluation_id": "<string>",
  "status": "<string>",
  "benchmark_id": "<string>",
  "progress": "<string>",
  "questions_completed": 123,
  "total_questions": 123,
  "avg_time_per_question": 123,
  "eta_seconds": 123,
  "start_time": "2023-11-07T05:31:56Z",
  "end_time": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

evaluation_id
string
required

Response

Successful Response

Response schema for evaluation status

evaluation_id
string
required

Unique identifier for the evaluation

status
string
required

Current status (pending, completed, failed)

benchmark_id
string
required

Benchmark ID used

progress
string | null

Progress string (e.g., '3/10 questions')

questions_completed
integer | null

Number of questions completed

total_questions
integer | null

Total number of questions

avg_time_per_question
number | null

Average time per question in seconds

eta_seconds
integer | null

Estimated time remaining in seconds

start_time
string<date-time> | null

Timestamp when evaluation started

end_time
string<date-time> | null

Timestamp when evaluation completed