Skip to content

API Reference

The SmartCut API provides server-to-server cutting optimization capabilities for your applications.

Choose the version that best suits your needs:

The most recent version with the latest features and optimizations.

View V3 Documentation →

Mature and well-tested version, recommended for production use.

View V2 Documentation →

Original version, maintained for backward compatibility only.

View V1 Documentation →

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
})
})