List of deployments













Workflows Deployments Endpoints












Examples
Real world code examples
List Deployments
GET /v1/workflows/deployments
200
Successful Response
next_cursor
Cursor for the next page of results
workspace_id
Workspace ID the results are scoped to
Playground
Test the endpoints live
curl https://api.mistral.ai/v1/workflows/deployments \
-X GET \
-H 'Authorization: Bearer YOUR_APIKEY_HERE'curl https://api.mistral.ai/v1/workflows/deployments \
-X GET \
-H 'Authorization: Bearer YOUR_APIKEY_HERE'200
{
"deployments": [
{
"created_at": "2025-12-17T10:25:07.818693Z",
"id": "019b2bd7-96e7-7219-8c0b-45a73da50088",
"is_active": false,
"name": "My resource",
"updated_at": "2025-12-17T10:41:03.469341Z"
}
],
"next_cursor": null,
"workspace_id": "019b2bd7-96e7-7219-8c0b-45a73da50088"
}{
"deployments": [
{
"created_at": "2025-12-17T10:25:07.818693Z",
"id": "019b2bd7-96e7-7219-8c0b-45a73da50088",
"is_active": false,
"name": "My resource",
"updated_at": "2025-12-17T10:41:03.469341Z"
}
],
"next_cursor": null,
"workspace_id": "019b2bd7-96e7-7219-8c0b-45a73da50088"
}Get Deployment
GET /v1/workflows/deployments/{name}
name
200
Successful Response
created_at
When the deployment was first registered
id
Unique identifier of the deployment
is_active
Whether at least one worker is currently live
is_hardened
Default Value: false
Whether the deployment has at least one authorized credential
name
Deployment name
updated_at
When the deployment was last updated
Playground
Test the endpoints live
curl https://api.mistral.ai/v1/workflows/deployments/{name} \
-X GET \
-H 'Authorization: Bearer YOUR_APIKEY_HERE'curl https://api.mistral.ai/v1/workflows/deployments/{name} \
-X GET \
-H 'Authorization: Bearer YOUR_APIKEY_HERE'200
{
"created_at": "2025-12-17T10:25:07.818693Z",
"id": "019b2bd7-96e7-7219-8c0b-45a73da50088",
"is_active": false,
"name": "My resource",
"updated_at": "2025-12-17T10:41:03.469341Z",
"workers": [
{
"created_at": "2025-12-17T10:25:07.818693Z",
"is_active": false,
"name": "My resource",
"updated_at": "2025-12-17T10:41:03.469341Z"
}
]
}{
"created_at": "2025-12-17T10:25:07.818693Z",
"id": "019b2bd7-96e7-7219-8c0b-45a73da50088",
"is_active": false,
"name": "My resource",
"updated_at": "2025-12-17T10:41:03.469341Z",
"workers": [
{
"created_at": "2025-12-17T10:25:07.818693Z",
"is_active": false,
"name": "My resource",
"updated_at": "2025-12-17T10:41:03.469341Z"
}
]
}