More modelsWavespeed aiReal esrgan

Generate image with wavespeed-ai/real-esrgan

Generates an image using the wavespeed-ai/real-esrgan 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

Input image.

Formaturi
scale?number

The factor to scale image by.

Default4
Range0 <= value <= 10
face_enhance?boolean

Run face enhancement along with upscaling.

Defaultfalse

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateImage" \  -H "Content-Type: application/json" \  -d '{    "model": "bwavespeed-ai/real-esrgan",    "image": "https://static.atlascloud.ai/media/images/1744206178039419379_bDY951YU.png"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}