Purchase trend — last 30 days vs the 30 before
GET
/v1/licenses/overview
const url = 'https://api.extport.dev/api/v1/licenses/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/licenses/overview \ --header 'Authorization: Bearer <token>'Daily revenue and licenses-sold buckets for the trailing 30 days (today included, partial), index-aligned with the previous 30-day period for the dashed comparison line. Manual issuances are excluded — this charts purchases. Revenue is gross by sale date (a later refund does not remove the sale from its day, matching how the license list shows amounts) and covers the dominant currency only; counts span all currencies. Pass ?tz= as minutes east of UTC to bucket days in the viewer’s timezone; the default is UTC.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”OK