Authentication status
GET
/auth/status
const url = 'https://demo.evcc.io/api/auth/status';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://demo.evcc.io/api/auth/statusWhether the current user is logged in.
Responses
Section titled “ Responses ”Success
Media type text/plain
string