GSTIN Checker
=========

get User Data from GSTIN Number

## Installation

```$ npm install gstin_checker --save```

## Usage

### Init GSTINChecker
```js
  var GSTINChecker = require("gstin_checker");
  var gstinChecker = new GSTINChecker({
    api_key: 'API Key'
  });
```
### request method

```js
  gstinChecker.request('GSTIN Number')
    .then(function(data) {
      console.log('Server responded with: ', data);
    })
    .catch(function(err) {
      console.error('Error: ', err);
    });
```
