A Typescript/Javascript API wrapper for WHMCS.
npm i whmcs-node
// typescript
import 'WhmcsApi' from 'whmcs-node';
// javascript
const WhmcsApi = require('whmcs-node').default
const whmcs = new WhmcsApi({
identifier: "",
secret: "",
apiUrl: "https://example.com/billing/includes/api.php"
});
whmcs.tickets.getTicketCounts({})
.then((data) => console.log(data))
.catch((err) => console.error(err))