const res = await fetch('https://api.oyefilmy.com/v1/generate', {
method: 'POST',
headers: {
Authorization: `Bearer ${apiKey}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({ model: 'flux-1.1-pro', prompt, seed }),
});
const { asset, credits } = await res.json();