This is the sdk for 3D product Mockups using Ai which is the Final year project created for The Univesity of Faisalabad by
A TypeScript/JavaScript SDK for interacting with the Voxtesy API.
npm install voxtesy-sdk
import { createScan, getScan } from "voxtesy-sdk";
// Create a new scan
const scan = await createScan({
name: "My Scan",
input_file_id: 123,
project_id: 456,
});
console.log(scan);
// Get scan details
const scanDetails = await getScan(scan.scan_id);
console.log(scanDetails);
Creates a new scan.
Fetches details for a scan.
- Build:
npm run build
ISC