Popularity
1.2
Stable
Activity
0.0
Stable
4
3
0
Monthly Downloads: 3
Programming language: Elixir
License: MIT License
Tags:
Third Party APIs
Latest version: v3.0.0
balanced alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view balanced alternatives based on common mentions on social networks and blogs.
-
Semaphore
Semaphore is an open source CI/CD platform. Self-host Semaphore on your own servers or on a cloud provider. -
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
cashier
Cashier is an Elixir library that aims to be an easy to use payment gateway, whilst offering the fault tolerance and scalability benefits of being built on top of Erlang/OTP
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of balanced or a related project?
README
Balanced-Elixir
Balanced API v1.1 Client for Elixir
Usage:
use the following:
{:balanced, "~> 3.1.0"}
Usage:
#looks for an application variable in the `:balanced` app named `:secret_key` or an environment variable named BALANCED_SECRET_KEY
{:ok, balanced} = Balanced.new
#alternatively, you can pass in the secret key as well
{:ok, balanced} = Balanced.new("my_secret_key")
#then pass in the balanced pid when calling functions
{status, response} = Balanced.BankAccounts.get(balanced, bank_account_id)
status is either :ok
or :error
response is a Map converted from the json response from Balanced.
Information about the balanced api can be found at http://docs.balancedpayments.com/1.1/api/
All calls return either {:ok, response} or {:error, response} where response is a map of the Balanced API response