List licenses
GET
/v1/licenses
const url = 'https://api.extport.dev/api/v1/licenses';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 \ --header 'Authorization: Bearer <token>'Newest first, 20 per page, each row carrying its plan tier and extension for cross-product views. Filter with ?plan=, ?extension=, or ?search= (case-insensitive substring of an activation code or buyer email); pass the previous response’s nextCursor as ?cursor= to fetch the next page.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”OK