Get a token from Laminar Auth
Successful token retrieval
const response = await fetch('https://api.laminar.run/auth/getToken', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "password": "text", "username": "text" }), }); const data = await response.json();
{ "token": "text", "token_type": "text", "refresh_token": "text" }