Segmind Developer Platform
Segmind makes it easy to use generative AI models in the cloud. We offer a range of models that can be used via the Serverless API endpoints or the PixelFlow GUI
Developer Quickstart
curl -X POST \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"prompt":"A wallpaper image of sports car with 'Flux' written on it, motion blur, side view, long shot","steps":4,"seed":1184522,"aspect_ratio":"1:1","base64":false}' \
"https://api.segmind.com/v1/fast-flux-schnell"import requests
api_key = "YOUR_API_KEY"
url = "https://api.segmind.com/v1/fast-flux-schnell"
data = {
"prompt": "A wallpaper image of sports car with 'Flux' written on it, motion blur, side view, long shot",
"steps": 4,
"seed": 1184522,
"aspect_ratio": "1:1",
"base64": False
}
headers = {'x-api-key': api_key}
response = requests.post(url, json=data, headers=headers)
print(response.content)


Start Building
Last updated