IMAGE
Popular
THIRD-PARTY
Playground
No images generated yet.
Press Tab to automatically fill the input with the placeholder text
A man riding a horse in SF.
Control Bar
API
import requests
url = "https://api.hyperbolic.xyz/v1/image/generation"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer <api-key>"
}
data = {
"model_name": "SDXL1.0-base",
"prompt": "A beautiful sunset over a calm ocean",
"enable_refiner": "false",
"negative_prompt": "",
"strength": "0.8",
"steps": "30",
"cfg_scale": "5",
"resolution": "1024x1024",
"backend": "auto"
}
response = requests.post(url, headers=headers, json=data)
print(response.json())