Tree BG 1
Tree
Tree
TreeLeaves
TreeLeaves
Cat IdleGrassGrassRockRock

Workflows Deployments Endpoints

List Deployments

GET /v1/workflows/deployments

200

Successful Response

List of deployments

next_cursor
*string|null

Cursor for the next page of results

workspace_id
*string

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'

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"
}

Get Deployment

GET /v1/workflows/deployments/{name}

200

Successful Response

created_at
*date-time

When the deployment was first registered

id
*string

Unique identifier of the deployment

is_active
*boolean

Whether at least one worker is currently live

is_hardened
boolean

Default Value: false

Whether the deployment has at least one authorized credential

location
DeploymentLocation|null

Where the deployment is running

name
*string

Deployment name

updated_at
*date-time

When the deployment was last updated

Workers registered for the deployment

Playground

Test the endpoints live

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"
    }
  ]
}