TODO
POST
/api/fetch
const url = 'http://localhost:5173/api/fetch';const options = { method: 'POST', headers: {cookie: 'authjs.session-token=<authjs.session-token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:5173/api/fetch \ --cookie authjs.session-token=<authjs.session-token>Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”TODO

