This operation provides the asset urls of a specific scan.
The unique ID of the scan
"unique-scan-id"
const response = await fetch('https://api.hosted.prismlabs.tech/scans/{scanId}/asset-urls', { method: 'GET', headers: {}, }); const data = await response.json();
{ "previewImage": "text", "model": "text", "canonicalBody": "text", "texture": "text", "material": "text", "stripes": "text" }
This operation provides a specific asset url of a specific scan.
The specific asset type of the scan
const response = await fetch('https://api.hosted.prismlabs.tech/scans/{scanId}/asset-urls/{assetType}', { method: 'GET', headers: {}, }); const data = await response.json();
text