coinbase alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view coinbase alternatives based on common mentions on social networks and blogs.
-
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
sparkpost
SparkPost client library for Elixir https://developers.sparkpost.com -
elixtagram
:camera: Instagram API client for the Elixir language (elixir-lang) -
google_sheets
Elixir library for fetching Google Spreadsheet data in CSV format -
pay_pal
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang) -
amazon_product_advertising_client
An Amazon Product Advertising API client for Elixir -
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 -
elixir_ipfs_api
The Elixir library that is used to communicate with the IPFS REST endpoint.
Learn Elixir in as little as 12 Weeks
Do you think we are missing an alternative of coinbase or a related project?
README
Coinbase-Elixir
Coinbase API V1 Client for Elixir:
This is an unofficial alpha coinbase API client for the Elixir language.
This API is based off of balanced-elixir and I take no credit for the organization of the project.
DISCLAIMER: Coinbase is an API for currency! This is not production ready yet and I take no responsibility for any damages.
Usage
Installation
{:coinbase, "~> 0.0.1"}
{:ok, coinbase} = Coinbase.new
#alternatively, you can pass in the key and secret
{:ok, coinbase} = Coinbase.new("my_key", "my_secret")
#then pass in the coinbase pid when calling functions
{status, response} = Coinbase.Users.Self.get(coinbase)
status is either `:ok` or `:error`
response is a Map converted from the json response from Coinbase.
Additional Links
Coinbase API Documentation can be found here. Although I've found about 10-15 typos and things wrong with their examples. Be careful.
Contributing
Please help this library. It's a great way to get some elixir experience. There is a decent amount of grunt work I don't have the time for.
Things to submit pull requests for:
- [ ] Complete tests for all endpoints
- [ ] Support new coinbase sandbox url
- [ ] Use v2 of coinbase API
- [ ] Add appropriate licensing