v6

latestOpenAPI 3.0.3raw.githubusercontent.com2025-03-0663270.5 KB
Version1.Engines

List engines

List all engines available to your organization/user

get/v1/engines/list

Headers

Organizationstring

Allows for requests to be scoped to an organization other than the user's default. If not provided, the user's default organization will be used.

Stability-Client-IDstring

Used to identify the source of requests, such as the client application or sub-organization. Optional, but recommended for organizational clarity.

Stability-Client-Versionstring

Used to identify the version of the application or service making the requests. Optional, but recommended for organizational clarity.

Response

OK response.

descriptionstring required
idstring required

Unique identifier for the engine

namestring required

Name of the engine

type'AUDIO' | 'CLASSIFICATION' | 'PICTURE' | 'STORAGE' | 'TEXT' | 'VIDEO' required

The type of content this engine produces

Example response

[
  {
    "description": "Stability-AI Stable Diffusion v1.6",
    "id": "stable-diffusion-v1-6",
    "name": "Stable Diffusion v1.6",
    "type": "PICTURE"
  },
  {
    "description": "Stability-AI Stable Diffusion XL v1.0",
    "id": "stable-diffusion-xl-1024-v1-0",
    "name": "Stable Diffusion XL v1.0",
    "type": "PICTURE"
  }
]