Tree BG 1
Tree
Tree
TreeLeaves
TreeLeaves
Cat IdleGrassGrassRockRock

Beta Workflows Deployments Endpoints

List and inspect worker deployments.

List Deployments

GET /v1/workflows/deployments

200

Successful Response

List of deployments

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-10-07T20:56:01.974Z",
      "id": "ipsum eiusmod",
      "is_active": false,
      "name": "consequat do",
      "updated_at": "2025-10-07T20:56:01.974Z"
    }
  ]
}

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

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-10-07T20:56:01.974Z",
  "id": "ipsum eiusmod",
  "is_active": false,
  "name": "consequat do",
  "updated_at": "2025-10-07T20:56:01.974Z",
  "workers": [
    {
      "created_at": "2025-10-07T20:56:01.974Z",
      "name": "reprehenderit ut dolore",
      "updated_at": "2025-10-07T20:56:01.974Z"
    }
  ]
}