Skip to main content
GET
Get Alignment Status

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

Returns the status of an alignment task that was created using create endpoint. This endpoint retrieves the current status and progress of a domain alignment workflow, allowing users to track the alignment process and retrieve results once completed.

status
enum<string>
required

Current status of the domain alignment project

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

"PROCESSING"

data
AlignmentProject · object | null

Alignment project data if available

Example:
start_time
string<date-time> | null

Timestamp when the project started

Example:

"2024-01-15T10:30:00Z"

end_time
string<date-time> | null

Timestamp when the project completed or failed

Example:

"2024-01-15T12:30:00Z"

gpu_training_completed
boolean | null

Whether GPU training completed. True if done, False if failed/cancelled, null if still training.