import requests
r = requests.post(
"https://api.aimlapi.com/v1/images/generations",
headers={"Authorization": "Bearer " + AIMLAPI_KEY},
json={
"model": "bytedance/seedream-5-0-pro",
"prompt": "Describe what you want the model to generate.",
"image_size": "2K"
},
)
print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/images/generations", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.AIMLAPI_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
"model": "bytedance/seedream-5-0-pro",
"prompt": "Describe what you want the model to generate.",
"image_size": "2K"
}),
});
console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/images/generations \
-H "Authorization: Bearer $AIMLAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"bytedance/seedream-5-0-pro","prompt":"Describe what you want the model to generate.","image_size":"2K"}'
OpenAI-compatible — swap the base URL and it works with your existing SDK.
| Type | Price |
|---|---|
| Input | |
| Output |
Pricing varies by output resolution. Free credits on signup.