# ingress-api

> ingress api wrappers

Latest version **0.1.2** (published 2013-08-24) · WTFPL license · 0 weekly downloads

## Install

```sh
npm install ingress-api
pnpm add ingress-api
yarn add ingress-api
bun add ingress-api
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2013-08-24 |
| First published | 2013-08-21 |
| Weekly downloads | 0 |
| License | WTFPL |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | nerdlabs |
| Maintainers | zined, nerdlabs |

## Links

- npm: https://www.npmjs.com/package/ingress-api
- Repository: https://github.com/nerdlabs/ingress-api-public
- Issues: https://github.com/nerdlabs/ingress-api-public/issues
- npm.io page: https://npm.io/package/ingress-api

## Recent versions

- 0.1.2 (latest) — 2013-08-24
- 0.1.1 — 2013-08-24
- 0.1.0 — 2013-08-21

## README

# ingress-api

## disclaimer

this code is for educational purposes only. using it on production services will probably be against the service's ToS and get you banned.

## wtf?

ingress-api aims to provide a wrapper for the ingress "API".

## usage

    var Api = require('ingress-api');
    var api = new Api();

    api.login('username', 'password', function(err, handshake) {
        if (err) {
            console.log('error logging in:', err);
            process.exit(1);
        }

        console.log('logged in. result:', handshake);

        api.api('playerUndecorated/getInventory', {}, function(err, data) {
            if (err) {
                console.log('error getting inventory:', err);
                return;
            }
            console.log(data);
        });
    });

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