Minimax-image-01 Serverless API
Generate high-fidelity images from text with precise control & stunning quality with Minimax Image-01.
~36.25s
$0.013 per generation
1import requests
2import json
3
4url = "https://api.segmind.com/v1/image-01"
5headers = {
6 "x-api-key": "YOUR_API_KEY",
7 "Content-Type": "application/json"
8}
9
10data = {
11 "prompt": "movie scene violent tsunami hitting the city, dynamic motion, realistic, cinematic, 4k",
12 "aspect_ratio": "1:1",
13 "number_of_images": 1,
14 "prompt_optimizer": true
15}
16
17response = requests.post(url, headers=headers, json=data)
18
19if response.status_code == 200:
20 result = response.json()
21 print(json.dumps(result, indent=2))
22else:
23 print(f"Error: {response.status_code}")
24 print(response.text) 1import requests
2import json
3
4url = "https://api.segmind.com/v1/image-01"
5headers = {
6 "x-api-key": "YOUR_API_KEY",
7 "Content-Type": "application/json"
8}
9
10data = {
11 "prompt": "movie scene violent tsunami hitting the city, dynamic motion, realistic, cinematic, 4k",
12 "aspect_ratio": "1:1",
13 "number_of_images": 1,
14 "prompt_optimizer": true
15}
16
17response = requests.post(url, headers=headers, json=data)
18
19if response.status_code == 200:
20 result = response.json()
21 print(json.dumps(result, indent=2))
22else:
23 print(f"Error: {response.status_code}")
24 print(response.text)API Endpoint
POST
https://api.segmind.com/v1/image-01Parameters
promptrequiredstringText prompt for generation
aspect_ratiooptionalstringAspect ratio of the ouput image
Default:
"1:1"Allowed values :
"1:1""16:9""4:3""3:2""2:3""3:4""9:16""21:9"number_of_imagesoptionalintegerNumber of images to generate
Default:
1Range: 1 - 9prompt_optimizeroptionalbooleanUse prompt optimizer
Default:
trueResponse Type
Returns: Image
Common Error Codes
The API returns standard HTTP status codes. Detailed error messages are provided in the response body.
400
Bad Request
Invalid parameters or request format
401
Unauthorized
Missing or invalid API key
403
Forbidden
Insufficient permissions
404
Not Found
Model or endpoint not found
406
Insufficient Credits
Not enough credits to process request
429
Rate Limited
Too many requests
500
Server Error
Internal server error
502
Bad Gateway
Service temporarily unavailable
504
Timeout
Request timed out