Skip to main content
GET
Get Model

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 one aligned model: its model_id, model_name, base model, derived deployment status and timestamps.

One aligned model's full record: identity, lineage, live deployment status and everything on its status and list rows.

progress and eta_seconds mirror the deployment-status shape but are not wired up yet, so they are always null here too. created_at/updated_at are the model's own persisted timestamps, not the deployment status endpoint's per-request ones (that endpoint's timestamps mark when a status check ran, not real historical state, so they are not merged in here).

model_id
string
required

Unique identifier of the aligned model.

model_name
string
required

Display name of the aligned model.

base_model_id
string
required

Base model this model was aligned from.

base_model_name
string
required

Display name of the base model this model was aligned from.

deployment_status
enum<string>
required

Derived from the latest deployment. Only DEPLOYED serves inference.

Available options:
UNDEPLOYED,
DEPLOYING,
DEPLOYED,
UNDEPLOYING
performance_metrics
DomainAlignedModelPerformanceMetrics · object
required

Performance statistics including accuracy, uncertainty, and domain violations

Examples:
alignment_id
string | null

Alignment project that produced this model.

error
string | null

Why the last deploy or undeploy failed, null when it succeeded.

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.

evaluation_data
Evaluation Data · object | null

Benchmark evaluation results if the model has been evaluated (includes evaluation_id, status, metrics, and comparison data)

usage_count
integer
default:0

Number of times this model has been used for inference

downloadable
boolean
default:false

Whether the model can be downloaded for local deployment

conversation_saving_enabled
boolean
default:false

Whether conversation history is automatically saved for this model

created_at
string | null

Creation timestamp.

updated_at
string | null

Last update timestamp.