Coming Soon
API Reference
Complete API documentation for File and Flow integration will be available soon
Authentication
All API requests require authentication using an API key. Include your API key in the request header:
Authorization: Bearer YOUR_API_KEY
Content-Type: application/jsonAPI Endpoints
GET
/api/v1/productsRetrieve a list of all products
GET
/api/v1/products/:idGet details for a specific product
POST
/api/v1/productsCreate a new product
PUT
/api/v1/products/:idUpdate an existing product
DELETE
/api/v1/products/:idDelete a product
GET
/api/v1/materialsList all available materials and finishes
GET
/api/v1/renders/:idRetrieve 3D render for a product
POST
/api/v1/rendersGenerate a new 3D render
Rate Limits
API requests are limited to 1,000 requests per hour per API key. Rate limit information is included in response headers:
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 999
X-RateLimit-Reset: 1640995200Error Codes
400Bad Request401Unauthorized404Not Found429Too Many Requests500Internal Server Error