Documentation Index Fetch the complete documentation index at: https://docs.aireiter.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
All endpoints require Bearer Token authentication Get the API Key: Visit the API Key management page to get your API Key Add the following to the request headers: Authorization: Bearer YOUR_API_KEY
Body
Model name Fixed value: "seedream_v5_lite"
Model parameters object Show params object properties
Text description for image generation No limitation
List of reference image URLs for image-to-image generation
Maximum 9 images
Supports the following two formats:
Publicly accessible URLs
Base64 encoded format
Must use the full Data URI format: data:image/{format};base64,{base64 data}
Supported image formats: jpeg, png, webp
Example: data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABg...
⚠️ Note: The prefix data:image/jpeg;base64, must be included, base64 image size must not exceed 10MB
Aspect ratio for image generation Supported aspect ratios:
1:1 - Square
3:2 - Landscape 3:2
2:3 - Portrait 2:3
4:3 - Landscape 4:3
3:4 - Portrait 3:4
16:9 - Landscape widescreen
9:16 - Portrait vertical
21:9 - Ultra widescreen
Image resolution Supported resolutions:
2K - 2K resolution (default)
3K - 3K high definition resolution
Web search toggle When enabled, the model autonomously decides based on the prompt whether to search internet content (such as products, weather, etc.) to enhance generation quality, but this increases latency
Callback URL upon task completion
Custom metadata, returned as-is
Initiator task ID User-defined task identifier, required
Response
Initiator task ID, which can be used to query the result
Initial status, fixed as "pending"
Estimated credit consumption
Creation time (ISO format)
cURL
Python
JavaScript
Go
Java
PHP
Ruby
Swift
C#
C
Objective-C
OCaml
Dart
R
curl --request POST \
--url https://aireiter.com/api/openapi/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "seedream_v5_lite",
"params": {
"prompt": "An orange tabby cat sitting on the windowsill, with Tokyo night view outside, cyberpunk style",
"aspect_ratio": "16:9",
"resolution": "3K",
"web_search": false
},
"out_task_id": "my_task_123456"
}'
{
"statusCode" : 200 ,
"message" : "" ,
"data" : {
"out_task_id" : "my_task_123456" ,
"status" : "pending" ,
"estimated_credits" : 100 ,
"created_at" : "2025-12-22T06:03:28.242Z"
}
}