Skip to main content
POST
/
models
/
v2
/
dreamlike-art
/
dreamlike-photoreal-2.0
text-to-image
curl --request POST \
  --url https://api.bytez.com/models/v2/dreamlike-art/dreamlike-photoreal-2.0 \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "text": "A beautiful landscape with mountains and a river"
}
'
{
  "error": "<string>",
  "output": "https://api.bytez.com/image/1234567890"
}

Authorizations

Authorization
string
header
required

Set Authorization header to BYTEZ_KEY 'Authorization: YOUR_BYTEZ_KEY_HERE'

Body

application/json

Schema for text-to-image models

text
string
required

The input text

Example:

"A beautiful landscape with mountains and a river"

Response

Successful text-to-image response.

error
string | null
required

Null on success; otherwise an error message.

output
string
required

Successful response with the generated image link

Example:

"https://api.bytez.com/image/1234567890"