Use the Seedream Pro model with the Mynth SDK or REST API.
Model ID
bytedance/seedream-pro
Seedream Pro always uses the latest Seedream Pro version available through Mynth. Pricing may be adjusted if a newer version is more expensive to serve.See pricing & more on mynth.io.
import Mynth from "@mynthio/sdk";const mynth = new Mynth();const task = await mynth.image.generate({ prompt: "Editorial product photograph of a ceramic coffee set on a sunlit marble counter", model: "bytedance/seedream-pro", size: "landscape", count: 1,});console.log(task.urls);
curl https://api.mynth.io/image/generate \ -X POST \ -H "Authorization: Bearer $MYNTH_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "prompt": "Editorial product photograph of a ceramic coffee set on a sunlit marble counter", "model": "bytedance/seedream-pro", "size": "landscape", "count": 1 }'