0.0
No release in over 3 years
Low commit activity in last 3 years
This is an unofficial client for the undocumented Nubank API. Consider this to be very unstable. You may have your access temporarily blocked if used too much. Use at your own risk.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.17
~> 5.0
>= 0
~> 10.0

Runtime

~> 4.0
 Project Readme

Nubank now requires 2FA for web access, and this client does not account for this. It most likely won't work.

Nubank

This is an unofficial client of the undocumented Nubank API. It may be unstable. You may have your access temporarily blocked if used too much. Use at your own risk.

Installation

Add this line to your application's Gemfile:

gem 'nubank_client'

And then execute:

$ bundle

Or install it yourself as:

$ gem install nubank_client

Usage

Client Instantiation

client = Nubank::Client.new(
  "12345678901" # Your CPF
  "123456"      # Your Password
)

Authentication

client.login

CAUTION: Hitting this endpoint repeatedly will block future login attempts temporarily, even in the Web interface.

Account

client.account

Returns your account information, such as due_date, available_balance and balances.

Events

client.events

Returns all the events for your account, starting with the most recent. This includes transactions, bill payment, limit change, card activation and more.

Response handling

response = client.events

response.code # => 200
response.body # => Serialized body
response.parsed_body # => JSON body

Resource objects

To access the Resource object, use Response#resource. For example:

response = client.events
events = response.resource

The Resource object responds to all the attributes the API exposes:

events.each do |event|
  puts event.description
  puts event.amount if event.category == "transaction"
end

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/nubank.

License

The gem is available as open source under the terms of the MIT License.