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