Learn how to generate image with AI/ML API.
const response = await fetch('/images/generations', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "prompt": "text" }), }); const data = await response.json();
Last updated 2 days ago