const response = await fetch('https://api.rememberizer.ai/api/v1/documents/memorize/', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"name": "text",
"content": "text"
}),
});
const data = await response.json();