Project

starlingrb

0.0
The project is in a healthy, maintained state
A Ruby library for interacting with the Starling Bank API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

StarlingRB

This library is a work in progress

StarlingRB is a Ruby library for interacting with the Starling Bank API.

Installation

Add this line to your application's Gemfile:

gem "starlingrb", require: "starling"

Usage

Set Client Details

Firstly you'll need to set an Access Token.

@client = Starling::Client.new(access_token: "")

Accounts

Starling::Account.list
Starling::Account.balance(account: "account_uid")

Transactions

# from and to should be date time stamps
Starling::Transaction.list(account: "account_uid", from: Date.parse("2023-01-01").to_datetime, to: Date.today.to_datetime)

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/deanpcmad/starlingrb.

License

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