Fleet-wide daily analytics series
GET
/v1/analytics/fleet/series
const url = 'https://api.extport.dev/api/v1/analytics/fleet/series';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/series \ --header 'Authorization: Bearer <token>'Same row shape as /series?dim=total, summed across every extension the tenant owns instead of one. ?days= bounds the window (default 90, max 1830). through is the last fully-rolled-up day, same as /series.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”OK