More modelsImage effectsAmerican comic style

Generate image with image-effects/american-comic-style

Generates an image using the image-effects/american-comic-style 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

imagestring

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

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": "image-effects/american-comic-style",    "image": "https://static.atlascloud.ai/media/images/upload_bada876d0cb71c5598a6e0885f14c83c.png"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}