Fetch a status page's dark logo
GET
/public/status-pages/{slug}/logo/dark
const url = 'https://api.perstat.io/public/status-pages/example/logo/dark';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://api.perstat.io/public/status-pages/example/logo/darkServes the dark-mode logo image of a published status page, addressed by slug, with a five minute public cache header. Returns 404 when the page has no dark-mode logo. The content type is that of the uploaded image.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”slug
required
string
Responses
Section titled “Responses”Media typeimage/*