const response = await fetch("https://maas.apigo.ai/v1/videos", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.YOUR API KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
model: "sora-2",
prompt: "An 8-second ApiGo product demo animation",
seconds: 8,
size: "1280x720",
}),
});
console.log(await response.json());