listScreens
GET
/api/v1/screens
const url = 'https://example.com/api/v1/screens';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://example.com/api/v1/screensResponses
Section titled “ Responses ”Computed screen status list
Dashboard authentication required