Skip to main content
GET
Get Evaluation Status

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

Returns the current status and progress of an evaluation. This endpoint retrieves the status of a running or completed evaluation with detailed progress metrics, allowing users to track the evaluation process and determine when results are ready.

evaluation_id
string
required

Unique identifier for the evaluation

Example:

"evaluation_01k4x9m2p7q3r7b1"

status
enum<string>
required

Current status

Available options:
PROCESSING,
READY,
FAILED,
DEPLOYING,
EVALUATING,
UNDEPLOYED,
EVALUATED,
STOPPED,
QUEUED
Example:

"PROCESSING"

created_at
string<date-time> | null

Timestamp when the evaluation was created

Example:

"2024-02-24T10:00:00Z"

completed_at
string<date-time> | null

Timestamp when the evaluation completed; null while still running

Example:

"2024-02-24T10:05:00Z"

updated_at
string<date-time> | null

Timestamp of the last status change

progress
number | null

Completion progress, 0.0 to 100.0. Not wired up yet, always null.

eta_seconds
integer | null

Estimated time remaining in seconds. Not wired up yet, always null.