Fetch a status page's logo
GET
/public/status-pages/{slug}/logo
const url = 'https://api.perstat.io/public/status-pages/example/logo';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/logoServes the logo image of a published status page, addressed by slug, with a five minute public cache header. Returns 404 when the page has no 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/*