AI-Powered Product Mockup and Photo Studio Creation with Nano Banana
Effortlessly create stunning product mockups and visuals using Nano Banana Image Editor.
~$0.0731
1import requests
2import time
3import json
4
5api_key = "YOUR_API_KEY"
6url = "https://api.segmind.com/workflows/6908a229d526331b80459dce-v9"
7
8data = {
9 "Input_Prompt": "Apply the design from Image 2 to the can in Image 1, and place it in a minimalist design setting, professional photography with less elements in frame\n\nfull design should be properly fixed in the mockup",
10 "image_input": [
11 "https://segmind-inference-inputs.s3.amazonaws.com/9fcd85f7-aa4d-4c2f-aa63-c25017971e67-mockup-01.png",
12 "https://segmind-inference-inputs.s3.amazonaws.com/5d647d6b-ee44-481f-b538-632557c8dc26-36881c57-f9f5-4a15-b46f-ea7136c56e3e.png"
13 ]
14}
15
16def poll_for_result(poll_url):
17 """Poll the API until the generation is complete"""
18 while True:
19 response = requests.get(
20 poll_url,
21 headers={'Authorization': f'Bearer {api_key}'}
22 )
23 result = response.json()
24
25 if result['status'] == 'COMPLETED':
26 # Parse the output (it's a JSON string)
27 outputs = json.loads(result['output'])
28 return outputs
29 elif result['status'] == 'FAILED':
30 raise Exception(result.get('error', 'Generation failed'))
31
32 # Wait 7 seconds before polling again
33 time.sleep(7)
34
35# Make the initial request
36response = requests.post(
37 url,
38 json=data,
39 headers={
40 'Authorization': f'Bearer {api_key}',
41 'Content-Type': 'application/json'
42 }
43)
44
45if response.status_code == 200:
46 result = response.json()
47 print('Request queued:', result)
48
49 # Start polling for results
50 outputs = poll_for_result(result['poll_url'])
51 print('Generation complete:', outputs)
52else:
53 print(f"Error: {response.status_code}")
54 print(response.text) 1import requests
2import time
3import json
4
5api_key = "YOUR_API_KEY"
6url = "https://api.segmind.com/workflows/6908a229d526331b80459dce-v9"
7
8data = {
9 "Input_Prompt": "Apply the design from Image 2 to the can in Image 1, and place it in a minimalist design setting, professional photography with less elements in frame\n\nfull design should be properly fixed in the mockup",
10 "image_input": [
11 "https://segmind-inference-inputs.s3.amazonaws.com/9fcd85f7-aa4d-4c2f-aa63-c25017971e67-mockup-01.png",
12 "https://segmind-inference-inputs.s3.amazonaws.com/5d647d6b-ee44-481f-b538-632557c8dc26-36881c57-f9f5-4a15-b46f-ea7136c56e3e.png"
13 ]
14}
15
16def poll_for_result(poll_url):
17 """Poll the API until the generation is complete"""
18 while True:
19 response = requests.get(
20 poll_url,
21 headers={'Authorization': f'Bearer {api_key}'}
22 )
23 result = response.json()
24
25 if result['status'] == 'COMPLETED':
26 # Parse the output (it's a JSON string)
27 outputs = json.loads(result['output'])
28 return outputs
29 elif result['status'] == 'FAILED':
30 raise Exception(result.get('error', 'Generation failed'))
31
32 # Wait 7 seconds before polling again
33 time.sleep(7)
34
35# Make the initial request
36response = requests.post(
37 url,
38 json=data,
39 headers={
40 'Authorization': f'Bearer {api_key}',
41 'Content-Type': 'application/json'
42 }
43)
44
45if response.status_code == 200:
46 result = response.json()
47 print('Request queued:', result)
48
49 # Start polling for results
50 outputs = poll_for_result(result['poll_url'])
51 print('Generation complete:', outputs)
52else:
53 print(f"Error: {response.status_code}")
54 print(response.text)API Endpoint
POST
https://api.segmind.com/workflows/6908a229d526331b80459dce-v9Parameters
Input_PromptoptionalstringInput Prompt
Default:
"Apply the design from Image 2 to the can in Image 1, and place it in a minimalist design setting, professional photography with less elements in frame\n\nfull design should be properly fixed in the mockup"image_inputoptionalarrayImage Input
Default:
["https://segmind-inference-inputs.s3.amazonaws.com/9fcd85f7-aa4d-4c2f-aa63-c25017971e67-mockup-01.png","https://segmind-inference-inputs.s3.amazonaws.com/5d647d6b-ee44-481f-b538-632557c8dc26-36881c57-f9f5-4a15-b46f-ea7136c56e3e.png"]Response Format
Returns: Polling-based asynchronous response
Initial request returns a poll_url. Poll every 7 seconds until status is COMPLETED.
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
Workflow 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