Skip to main content

Enterprise: Text to Image Endpoint

Overview

This endpoint generates an image from a text prompt using flux model.

caution

Make sure you add your s3 details for flux server, so you can receive image generated in your bucket. Images generated without s3 details being added will be delete after 24hours

Request

--request POST 'https://modelslab.com/api/v1/enterprise/flux/text2img' \

Make a POST request to https://modelslab.com/api/v1/enterprise/flux/text2img endpoint and pass the required parameters as a request body.

Body Attributes

ParameterDescription
keyYour API Key used for request authorization.
promptText prompt with description of the things you want in the image to be generated.
negative_promptItems you don't want in the image.
widthMax Height: Width: 1024x1024.
heightMax Height: Width: 1024x1024.
samplesNumber of images to be returned in response. The maximum value is 4.
safety_checkerA checker for NSFW images. If such an image is detected, it will be replaced by a blank image.
seedSeed is used to reproduce results, same seed will give you same image in return again. Pass null for a random number.
instant_responsequeue response instantly before processing finishes instead of waiting a minimum amount of time default: false, options: true or false
base64Get response as base64 string, default: false, options: true or false
webhookSet an URL to get a POST API call once the image generation is complete.
track_idThis ID is returned in the response to the webhook API call. This will be used to identify the webhook request.

Example

Body

Body
{
"key" : "",
"prompt": "ultra realistic close up portrait ((beautiful pale cyberpunk female with heavy black eyeliner))",
"negative_prompt": "bad quality",
"width": "512",
"height": "512",
"safety_checker": false,
"seed": null,
"samples":1,
"base64":false,
"webhook": null,
"track_id": null
}

Request

var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");

var raw = JSON.stringify({
"key" : "",
"prompt": "ultra realistic close up portrait ((beautiful pale cyberpunk female with heavy black eyeliner))",
"negative_prompt": "bad quality",
"width": "512",
"height": "512",
"safety_checker": false,
"seed": null,
"samples":1,
"base64":false,
"webhook": null,
"track_id": null
});

var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};

fetch("https://modelslab.com/api/v1/enterprise/flux/text2img", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));

Response

{
"status": "success",
"generationTime": 1.3200268745422363,
"output": [
"https://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/generations/a42fd78c-898d-4daa-a1e9-1c91ad2ea894-0.png"
],
"meta": {
"base64": "no",
"clip_skip": null,
"file_prefix": "a42fd78c-898d-4daa-a1e9-1c91ad2ea894",
"guidance_scale": 3.5,
"height": 1024,
"instant_response": "no",
"model_id": "flux",
"n_samples": 1,
"negative_prompt": "low quality",
"num_inference_steps": 10,
"opacity": 0.8,
"output_type": "png",
"padding_down": 10,
"padding_right": 10,
"prompt": "An astronaut riding a horse",
"rescale": "yes",
"scale_down": 6,
"seed": 3415551529,
"temp": "no",
"watermark": "no",
"width": 768
}
}