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
- Host: GitHub
- URL: https://github.com/joeychilson/alpha_vantage_client
- Owner: joeychilson
- License: mit
- Created: 2023-06-28T21:26:45.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-31T23:42:46.000Z (almost 3 years ago)
- Last Synced: 2025-08-02T16:44:59.691Z (11 months ago)
- Topics: alphavantage, elixir
- Language: Elixir
- Homepage:
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```