# easybill-node-api

> Node module to access Easybill API

Latest version **2.1.0** (published 2026-09-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install easybill-node-api
pnpm add easybill-node-api
yarn add easybill-node-api
bun add easybill-node-api
```

## Health

**Score 55/100 (C)** — status: active.

Positive: no vulnerabilities; recently updated; high maintenance score.

Warnings: low downloads; no types; no esm support.

## Facts

| | |
|---|---|
| Version | 2.1.0 |
| Published | 2026-09-04 |
| First published | 2017-12-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 2.9 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Denis Ciccale |
| Maintainers | denis, evgdema, dubkrapht |
| Keywords | easybill, api |

## Links

- npm: https://www.npmjs.com/package/easybill-node-api
- Repository: https://github.com/zenfulfillment/easybill-node-api
- Homepage: https://github.com/zenfulfillment/easybill-node-api#readme
- Issues: https://github.com/zenfulfillment/easybill-node-api/issues
- npm.io page: https://npm.io/package/easybill-node-api

## Dependencies (4)

- [lodash](https://npm.io/package/lodash.md) ^4.17.4
- [request](https://npm.io/package/request.md) ^2.83.0
- [bluebird](https://npm.io/package/bluebird.md) ^3.5.1
- [request-promise](https://npm.io/package/request-promise.md) ^4.2.2

## Recent versions

- 2.1.0 (latest) — 2026-09-04
- 2.0.2 — 2018-10-22
- 2.0.1 — 2017-12-09
- 2.0.0 — 2017-12-07
- 1.0.0 — 2017-12-05

## README

# easybill node api

## Usage

```js
const Promise = require('bluebird');

const easybill = require('easybill-node-api')('your-easybill-token');

easybill.get('documents')
  .then((res) => console.log(res.items));

// Since this module uses Bluebird, this is also possible:

easybill.get('customers')
  .then(({items}) => items)
  .mapSeries(async (customer) => {
    const res = await easybill.get(`documents?customer_id=${customer.id}`);
    return {
      customer,
      documents: res.items
    };
  }
  .each(({customer, documents}) =>
    console.log(`Customer ${customer.id} has ${documets.length} documents`);
  );
```

---
_Source: https://npm.io/package/easybill-node-api · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
