More modelsWavespeed aiHidream i1 full

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

Generates an image using the wavespeed-ai/hidream-i1-full 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-full",    "prompt": "photograph of an alternative female with an orange bandana, light brown long hair, clear frame glasses, septum piecing, beige overalls hanging off one shoulder, a white tube top underneath, she is sitting in her apartment on a bohemian rug, in the style of a vogue magazine shoot. She holds a sign saying \"HiDream on atlascloud.ai\""  }'
{
  "id": "7hm7nbwarxrm80cnq1yvmxz4m4",
  "logs": "...",
  "urls": {
    "cancel": "http://example.com",
    "result": "http://example.com"
  },
  "input": {
    "model": "wavespeed-ai/hidream-i1-full",
    "seed": -1,
    "size": "1024*1024",
    "prompt": "photograph of an alternative female with an orange bandana, light brown long hair, clear frame glasses, septum piecing, beige overalls hanging off one shoulder, a white tube top underneath, she is sitting in her apartment on a bohemian rug, in the style of a vogue magazine shoot. She holds a sign saying \"HiDream on atlascloud.ai\"",
    "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
  ]
}