Fleet-wide analytics overview
GET
/v1/analytics/fleet/overview
const url = 'https://api.extport.dev/api/v1/analytics/fleet/overview';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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.extport.dev/api/v1/analytics/fleet/overview \ --header 'Authorization: Bearer <token>'Same shape as /overview but summed across every extension the tenant owns — derived from the same rollup /fleet/series reads, so this can never disagree with the fleet chart the way a live install-state query could.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”OK