Git Product home page Git Product logo

amazon-reload-balance's Introduction

Amazon Reload Balance

Reload your Amazon's account balance with your credit/debit cards in Node.

amazon-reload-balance

Usage

const { AmazonReloadBalance } = require("amazon-reload-balance");

const amazonReloadBalance = new AmazonReloadBalance();
const isSignedIn = await amazonReloadBalance.signIn("username", "password");

if (!isSignedIn) {
  console.error("Signing-in failed!");
  return;
}

// The credit/debit card you would like to use should be already registered on your Amazon account.
// Minimum amount is 0.50
await amazonReloadBalance.reload(20.00, "card number 1");
await amazonReloadBalance.reload(15.75, "card number 2");

await amazonReloadBalance.signOut();

For running the example:

  1. create /config/local.json and fill out values like this:
{
  "email": "your email on Amazon",
  "password": "your password",
  "reloads": [
    { "amount": 0.5, "cardNumber": "123456789012" },
    { "amount": 1.25, "cardNumber": "777777777777" }
  ]
}

Requirements

Intended to be run on Node 7.6.0 or higher as this module requires Nightmare & async/await.

FAQ

Why did you build this?

I've been optimizing the micro management of my life and one of them is periodically using ~20 of my unused credit cards to prevent them from being closed. Otherwise, it would negatively affect my credit score. But still I wanted to pay little amounts with my unused credit cards.

I found that you can reload your Amazon balance as low as 50 cents, so I've been reloading it with all of my unused credit cards each month. I wanted to automate this to simplify this tedious work.

Caveat

Amazon doesn't officially provide API for reloading Amazon balances. In order to support this module, I'm using Nightmare. This means that if an Amazon web page used in this module is modified, reloading Amazon balance with this may not work.

If you find that this module doesn't work, file a new issue.

License

WTFPL

amazon-reload-balance's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

amazon-reload-balance's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.