Skip to main content
GET
Get 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. Only DEPLOYED serves inference.

Available options:
UNDEPLOYED,
DEPLOYING,
DEPLOYED,
UNDEPLOYING
Example:

"DEPLOYED"

error
string | null

Why the last attempt failed, null when it succeeded. Read with status: UNDEPLOYED with an error means the deploy failed, DEPLOYED with an error means the undeploy failed.

created_at
string<date-time> | null

Timestamp when this status check ran

Example:

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

completed_at
string<date-time> | null

Timestamp when the deployment operation 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.