Key capabilities
- Text-to-Image — Generate images from text prompts
- Custom Size — Flexible output sizes
- Watermark Control — Optional watermark and logo configuration
Quick example
Parameters
API Reference
View the interactive API playground.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ByteDance Seedream 5.0 Pro image model — precise editing and layer control, pixel-tiered pricing.
curl https://api.upmore.net/v1/images/generations \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "doubao-seedream-5-0-pro",
"prompt": "A serene mountain landscape at sunrise with misty valleys",
"size": "1024x1024",
"watermark": false
}'
import requests
response = requests.post(
"https://api.upmore.net/v1/images/generations",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
json={
"model": "doubao-seedream-5-0-pro",
"prompt": "A serene mountain landscape at sunrise with misty valleys",
"size": "1024x1024",
"watermark": False
}
)
task = response.json()
print(f"Task ID: {task['id']}")
| Parameter | Type | Required | Description |
|---|---|---|---|
model | string | Yes | Must be doubao-seedream-5-0-pro |
prompt | string | Yes | Text prompt for image generation |
size | string | No | Output image size, e.g. 1024x1024, 2K |
watermark | boolean | No | Default: false |
seed | integer | No | Random seed for reproducibility |
logo_info | object | No | Logo config: add_logo, position, language, opacity |