More modelsWavespeed aiInstant character

Generate image with wavespeed-ai/instant-character

Generates an image using the wavespeed-ai/instant-character 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.

size?string

The size of the generated media in pixels (width*height).

imagestring

The image URL to generate an image from. Needs to match the dimensions of the mask.

promptstring

The prompt to generate an image from.

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateImage" \  -H "Content-Type: application/json" \  -d '{    "model": "wavespeed-ai/instant-character",    "image": "https://static.atlascloud.ai/media/images/1745853771145444122_WW40XTQM.jpg",    "prompt": "A futuristic android girl with glowing blue eyes, wearing green suit, standing next to a holographic sign displaying \"I Love AtlasCloud\", neon-lit cyberpunk city background, sleek and high-tech vibe, Sci-fi movie style"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}