curl --request GET \
--url https://api.cerebras.ai/management/v1/orgs/{org_name}/models/{model_arch_id}/versions \
--header 'Authorization: Bearer <token>'{
"model_versions": [
{
"name": "orgs/my-org/models/llama-3.3-70b/versions/1",
"done": true,
"response": {
"customer_s3_uri": "s3://my-bucket/model-weights",
"version_aliases": [
"production-jan-12-2026-finetuned"
],
"sync_status": "done"
}
},
{
"name": "orgs/my-org/models/llama-3.3-70b/versions/2",
"done": false,
"response": {
"customer_s3_uri": "s3://my-bucket/model-weights-v2",
"version_aliases": [
"my-cool-version"
],
"sync_status": "in_progress"
}
}
]
}curl --request GET \
--url https://api.cerebras.ai/management/v1/orgs/{org_name}/models/{model_arch_id}/versions \
--header 'Authorization: Bearer <token>'{
"model_versions": [
{
"name": "orgs/my-org/models/llama-3.3-70b/versions/1",
"done": true,
"response": {
"customer_s3_uri": "s3://my-bucket/model-weights",
"version_aliases": [
"production-jan-12-2026-finetuned"
],
"sync_status": "done"
}
},
{
"name": "orgs/my-org/models/llama-3.3-70b/versions/2",
"done": false,
"response": {
"customer_s3_uri": "s3://my-bucket/model-weights-v2",
"version_aliases": [
"my-cool-version"
],
"sync_status": "in_progress"
}
}
]
}Management API key generated from the Management API keys section on the API keys page at https://cloud.cerebras.ai. Use the format: Bearer <MANAGEMENT_API_KEY>
Cerebras customer management organization name found under Management API keys on the API keys page at https://cloud.cerebras.ai.
Note: This is not to be confused with org_id.
Name of the model architecture (e.g. llama3.1-8b, llama-3.3-70b).
Successful Response
Hide child attributes
Model Version ID in the format of orgs/<org_name>/models/<model_arch_id>/versions/<version_id>.
Whether the operation is complete.
Response data with model version status information.
Hide child attributes
S3 URI provided by the customer.
List of aliases that can be used to refer to this version.
Status of the weight sync operation.
not_started, queued, in_progress, done, error, skipped Suffix appended to the system fingerprint for this model version.
Was this page helpful?