More modelsWavespeed aiHidream i1 dev

Generate image with wavespeed-ai/hidream-i1-dev

Generates an image using the wavespeed-ai/hidream-i1-dev 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?Seed

The same seed and the same prompt given to the same version of the model will output the same image every time.

Default-1
size?Image Size

The size of the generated image.

promptPrompt

The prompt to generate an image from.

enable_base64_output?Enable output base64

If set to true, the output base64 will be enabled.

Defaultfalse
enable_safety_checker?Enable Safety Checker

If set to true, the safety checker will be enabled.

Defaulttrue

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateImage" \  -H "Content-Type: application/json" \  -d '{    "model": "wavespeed-ai/hidream-i1-dev",    "prompt": "A Ghibli-inspired scene featuring a giant, friendly creature walking through a lush forest and holding a sign saying \"HiDream on atlascloud.ai\", with vibrant colors, soft lighting, and whimsical details like floating lights and colorful, magical creatures. The scene captures a peaceful, enchanted atmosphere"  }'
{
  "id": "7hm7nbwarxrm80cnq1yvmxz4m4",
  "logs": "...",
  "urls": {
    "cancel": "http://example.com",
    "result": "http://example.com"
  },
  "input": {
    "model": "wavespeed-ai/hidream-i1-dev",
    "seed": -1,
    "size": "1024*1024",
    "prompt": "A Ghibli-inspired scene featuring a giant, friendly creature walking through a lush forest and holding a sign saying \"HiDream on atlascloud.ai\", with vibrant colors, soft lighting, and whimsical details like floating lights and colorful, magical creatures. The scene captures a peaceful, enchanted atmosphere",
    "enable_base64_output": false,
    "enable_safety_checker": true
  },
  "model": "black-forest-labs/flux-dev",
  "output": [
    "https://replicate.delivery/..."
  ],
  "status": "processing",
  "created_at": "2025-03-21T11:36:30.151Z",
  "has_nsfw_contents": [
    false
  ]
}