const response = await fetch('https://api.cloudfactory.app/v1/signed-url', {
method: 'POST',
headers: {
"Content-Type": "application/json",
"X-Api-Key": "<YOUR_API_KEY>"
},
body: JSON.stringify({
"count": 1,
"configuration_id": "123e4567-e89b-12d3-a456-426614174000"
}),
});
const data = await response.json();