Last updated 7 months ago
Gets usage summary of all sessions for your account, including number of sessions and session durations.
OK
Indicates if results have been truncated
Query parameter for the next batch of results
const response = await fetch('https://api.appetize.io/v1/usageSummary', { method: 'GET', headers: {}, }); const data = await response.json();
{ "hasMore": true, "nextKey": "xyz", "data": [ { "month": "2023-07", "publicKey": "p7nww3n6ubq73r1nh9jtauqy8w", "numSessions": 325, "minutes": 162.5 }, { "month": "2023-08", "publicKey": "p7nww3n6ubq73r1nh9jtauqy8w", "numSessions": 102, "minutes": 80.3 } ] }