📈
Alphavantage Laravel API
  • Alphavantage Laravel API
    • Installation
    • Basic Usage
  • Deep Dive
    • TimeSeries
    • Core
    • Fundamental
    • Indicators
    • Intelligence
  • Exceptions
    • ApiVolumeReached Exception
    • ConnectionException Exception
    • InvalidArgumentException Exception
Powered by GitBook
On this page

Was this helpful?

  1. Alphavantage Laravel API

Installation

Installation of the Alphavantage Laravel API

PreviousAlphavantage Laravel APINextBasic Usage

Last updated 11 months ago

Was this helpful?

You can install the package via composer:

composer require tschucki/alphavantage-laravel

You can publish the config file with:

php artisan vendor:publish --tag="alphavantage-laravel-config"

This is the contents of the published config file:

return [
    'key' => env('ALPHAVANTAGE_API_KEY'),
];

Pay Alphavantage and get your API key .

You are now ready to take off.

here