API Reference
The SmartCut API provides server-to-server cutting optimization capabilities for your applications.
API Versions
Section titled “API Versions”Choose the version that best suits your needs:
V3 - Latest
Section titled “V3 - Latest ”The most recent version with the latest features and optimizations.
V2 - Stable
Section titled “V2 - Stable ”Mature and well-tested version, recommended for production use.
V1 - Legacy
Section titled “V1 - Legacy ”Original version, maintained for backward compatibility only.
Quick Start
Section titled “Quick Start”Authentication
Section titled “Authentication”All API requests require an API key. Include it in the Authorization header:
const response = await fetch('https://api.smartcut.dev/v3/calculate', { method: 'POST', headers: { 'Authorization': 'YOUR_API_KEY', 'Content-Type': 'application/json' }, body: JSON.stringify({ // Your request data })})