More modelsBytedanceSeededit v3

Generate image with bytedance/seededit-v3

Generates an image using the bytedance/seededit-v3 model.

POST
/api/v1/model/generateImage
AuthorizationBearer <token>

API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.

In: header

modelstring

model name

seed?integer

The random seed to use for the generation. -1 means a random seed will be used.

Default-1
imagestring

The image to edit, can be a URL or base64 encoded image.

promptstring

The editing instruction describing the desired changes to the image.

guidance_scale?number

The guidance scale to use for the generation.

Default0.5
Range0 <= value <= 1
enable_base64_output?boolean

If enabled, the output will be encoded into a BASE64 string instead of a URL. This property is only available through the API.

Defaultfalse

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateImage" \  -H "Content-Type: application/json" \  -d '{    "model": "bytedance/seededit-v3",    "image": "https://static.atlascloud.ai/media/images/1751357277013126744_lvKJIFDD.png",    "prompt": "Rainbow colored short curly hair"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}