Stability.Ai
  1. engines
Stability.Ai
  • Getting Started
  • v1
    • user
      • account
      • balance
    • engines
      • list
        GET
    • generation
      • text-to-image
      • image-to-image
      • image-to-image/upscale
      • image-to-image/masking
  • v2alpha
    • generation
      • image-to-video
      • image-to-video/result
      • stable-image/upscale
      • stable-image/upscale/result
      • stable-image/inpaint
  1. engines

list

https://api.stability.ai
https://api.stability.ai
https://api.stability.ai
https://api.stability.ai
GET
/v1/engines/list
v1/engines
List all engines available to your organization/user
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.stability.ai/v1/engines/list'
Response Response Example
200 - Example 1
[
    {
        "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"
    }
]

Request

Header Params
Organization
string 
optional
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.
Example:
org-123456
Stability-Client-ID
string 
optional
Used to identify the source of requests, such as the client application or sub-organization. Optional, but recommended for organizational clarity.
Example:
my-great-plugin
Stability-Client-Version
string 
optional
Used to identify the version of the application or service making the requests. Optional, but recommended for organizational clarity.
Example:
1.2.1

Responses

🟢200OK response.
application/json
Body
The engines available to your user/organization
array of:
description
string 
required
id
string 
required
Unique identifier for the engine
Example:
stable-diffusion-v1-6
name
string 
required
Name of the engine
Example:
Stable Diffusion XL v1.0
type
enum<string> 
required
The type of content this engine produces
Allowed values:
AUDIOCLASSIFICATIONPICTURESTORAGETEXTVIDEO
Example:
PICTURE
🟠401401
🔴500500
Previous
balance
Next
text-to-image
Built with