PuterJS API Reference

Detailed documentation of PuterJS API methods and parameters.

API Methods

PuterJS provides a comprehensive API for integrating AI capabilities into your applications.

">

PUT /api/v1/resource

API Examples

fetch('/api/v1/resource', {
 method: 'PUT',
 headers: {
 'Content-Type': 'application/json'
 },
 body: JSON.stringify({ key: 'value' })
})
.then(response => response.json())
.then(data => console.log(data));