POST
/
v1
/
images
/
generations
curl --request POST \
  --url https://inference.api.nscale.com/v1/images/generations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json; charset=utf-8' \
  --data '{
  "model": "black-forest-labs/FLUX.1-schnell",
  "n": 1,
  "prompt": "A serene mountain landscape at sunset with a lake reflecting the orange sky",
  "size": "512x512"
}'
{
  "created": 123,
  "data": [
    {
      "b64_json": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json; charset=utf-8
model
string
required
prompt
string
required
size
string
default:512x512
n
integer
default:1

Response

200
application/json; charset=utf-8
created
integer
required
data
object[]
required