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