Skip to main content
Model ID
sourceful/riverflow-2.0-pro
See pricing & more on mynth.io.
import Mynth from "@mynthio/sdk";

const mynth = new Mynth();

const task = await mynth.image.generate({
  prompt: "Premium editorial photograph of a sculptural perfume bottle on dark stone",
  model: "sourceful/riverflow-2.0-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": "Premium editorial photograph of a sculptural perfume bottle on dark stone",
    "model": "sourceful/riverflow-2.0-pro",
    "size": "landscape",
    "count": 1
  }'