An open API service indexing awesome lists of open source software.

https://github.com/joeychilson/alpha_vantage_client

An Elixir HTTP client for Alpha Vantage API
https://github.com/joeychilson/alpha_vantage_client

alphavantage elixir

Last synced: 15 days ago
JSON representation

An Elixir HTTP client for Alpha Vantage API

Awesome Lists containing this project

README

          

# AlphaVantage

An Elixir-based HTTP Client for Alpha Vantage API

## Installation

`AlphaVantage` is available on Hex. Add it to your list of dependencies in mix.exs:

```elixir
def deps do
[
{:alpha_vantage_client, "~> 0.2.0"}
]
end
```

## Configuration

Add your API key to your config.exs file:

```elixir
config :alpha_vantage_client, :api_key, ""
```

You can set rate limit for API calls if you have a premium account:

```elixir
config :alpha_vantage_client, :interval, 1_000
config :alpha_vantage_client, :max, 5
```