const response = await fetch('https://api.laminar.run/api-descriptions', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"description": "text",
"methodType": "GET",
"name": "text",
"url": "text"
}),
});
const data = await response.json();