Per-extension analytics ranking
GET
/v1/analytics/fleet/extensions
const url = 'https://api.extport.dev/api/v1/analytics/fleet/extensions';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/extensions \ --header 'Authorization: Bearer <token>'One row per extension that has ever reported analytics, sorted by weekly actives — the “list” half of the fleet-wide page, since per-extension detail belongs in a table, not as more chart lines. Derived from the same rollup every other analytics endpoint reads, so an extension only appears once its own first nightly rollup has run, same as its own Analytics tab would show.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”OK