Skip to main content
GET
Get Model Deployment Status

Authorizations

Authorization
string
header
required

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

Path Parameters

model_id
string
required

Response

Returns the current deployment status of an aligned model.

model_id
string
required

model ID that you want to deploy

Example:

"model_abc123"

status
enum<string>
required

Deployment status: PROCESSING (in progress), READY (successfully deployed) or FAILED

Available options:
PROCESSING,
READY,
FAILED
Example:

"READY"

result
Result · object | null

Result payload; on FAILED carries error with the failure reason

start_time
string<date-time> | null

Timestamp when deployment process started

Example:

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

end_time
string<date-time> | null

Timestamp when deployment process completed

Example:

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