Stability AI · Schema

UpscaleImageResponse

3D GenerationAIGenerative AIImage GenerationImage EditingMachine LearningStable DiffusionText to ImageVideo Generation

Properties

Name Type Description
image string Base64-encoded image data when Accept header is set to application/json.
finish_reason string The reason the upscale finished.
seed integer The seed used for generation.
View JSON Schema on GitHub

JSON Schema

stability-ai-upscaleimageresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpscaleImageResponse",
  "title": "UpscaleImageResponse",
  "type": "object",
  "properties": {
    "image": {
      "type": "string",
      "description": "Base64-encoded image data when Accept header is set to application/json."
    },
    "finish_reason": {
      "type": "string",
      "enum": [
        "SUCCESS",
        "CONTENT_FILTERED"
      ],
      "description": "The reason the upscale finished."
    },
    "seed": {
      "type": "integer",
      "description": "The seed used for generation."
    }
  }
}