Skip to main content
GET
/
api
/
v3
/
benchmark
/
status
/
{id}
Get Benchmark Status
curl --request GET \
  --url https://api.nugen.in/api/v3/benchmark/status/{id} \
  --header 'Authorization: Bearer <token>'
{
  "benchmark_name": "<string>",
  "status": "pending",
  "questions": [
    {
      "question_num": 123,
      "question": "<string>",
      "answer": "<string>"
    }
  ],
  "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

id
integer
required

Response

Successful Response

benchmark_name
string
required

Name of the benchmark

status
enum<string>
required

Benchmark status

Available options:
pending,
completed,
deploying,
evaluating,
undeployed,
evaluated,
failed
questions
BenchmarkQuestion · object[]

List of benchmark questions

start_time
string<date-time> | null
end_time
string<date-time> | null