const url = 'https://api.supermemory.ai/v3/documents/{id}';
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}, body: undefined};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}