Speed:
Format:
Geometry:
Quantity:
fetch('https://api.example.com/generate', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
prompt: 'Generate a 3D model of a house',
speed: 'medium',
format: 'gltf'
})
})
.then(response => response.json())
.then(data => console.log(data))