OK
const response = await fetch('https://api.laminar.run/api-keys/{id}', { method: 'DELETE', headers: {}, }); const data = await response.json();
const response = await fetch('https://api.laminar.run/api-keys', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "apiKey": "text", "createdAt": "2024-11-21T07:09:40.027Z" }
const response = await fetch('https://api.laminar.run/api-keys/{id}', { method: 'GET', headers: {}, }); const data = await response.json();