PHPackages                             tschucki/alphavantage-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. tschucki/alphavantage-laravel

ActiveLibrary[API Development](/categories/api)

tschucki/alphavantage-laravel
=============================

Laravel Wrapper for Alphavantage API

0.0.5(1mo ago)62.1k↓11.1%2[2 PRs](https://github.com/Tschucki/alphavantage-laravel/pulls)MITPHPPHP ^8.2CI failing

Since Jul 14Pushed 1mo ago2 watchersCompare

[ Source](https://github.com/Tschucki/alphavantage-laravel)[ Packagist](https://packagist.org/packages/tschucki/alphavantage-laravel)[ Docs](https://github.com/tschucki/alphavantage-laravel)[ GitHub Sponsors](https://github.com/Tschucki)[ RSS](/packages/tschucki-alphavantage-laravel/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (26)Versions (8)Used By (0)

Laravel Wrapper for Alphavantage API
====================================

[](#laravel-wrapper-for-alphavantage-api)

[![Latest Version on Packagist](https://camo.githubusercontent.com/7fcadb528d15d94117f27738030e791bce8cbea44845338fd6154bca35de7a75/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7473636875636b692f616c70686176616e746167652d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tschucki/alphavantage-laravel)[![GitHub Tests Action Status](https://camo.githubusercontent.com/fd14ee40b44d606cc0c96497d96f2f6135702401a0a0c6bb7982773cd9b862e2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7473636875636b692f616c70686176616e746167652d6c61726176656c2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/tschucki/alphavantage-laravel/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/ded324af63ef6061dc22aa9e9663b34292a9aedb10592c2c09eca7b5fcb59cfc/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7473636875636b692f616c70686176616e746167652d6c61726176656c2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/tschucki/alphavantage-laravel/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/a76a26344d07217e78a926698bfedaf8f43a3329b87f353d10bdf3d7cbaac2b2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7473636875636b692f616c70686176616e746167652d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tschucki/alphavantage-laravel)

[![Alpha Vantage Logo](./.github/images/AlphavantageLogo.png)](./.github/images/AlphavantageLogo.png)

This Laravel package provides an easy way to access the Alphavantage API. With it, you can i.e. fetch historical financial data, including stock prices, forex, and cryptocurrency information. It integrates smoothly with your Laravel application, making it simple to use Alphavantage's services.

I created this package for a project I was working on. So it currently only supports the categories I needed. If you need more categories, feel free to open an issue or a pull request. I'd love to hear your feedback and suggestions.

```
use Tschucki\Alphavantage\Facades\Alphavantage;

Alphavantage::timeSeries()->daily('IBM');
```

Installation
------------

[](#installation)

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 [here](https://www.alphavantage.co/support/#api-key).

Usage
-----

[](#usage)

I tried to make the package as easy to use as possible. I tried to follow the [Alphavantage](https://www.alphavantage.co/documentation/) API documentation as closely as possible. So if you are familiar with the API, you should feel right at home. You have access to the following categories:

- Core
- Fundamentals
- Indicators
- Intelligence

You can either use the facade access these categories or use the `Alphavantage` class directly.

```
use Tschucki\Alphavantage;

Alphavantage::timeSeries()->daily('IBM');
```

Documentation
-------------

[](#documentation)

You can find the documentation [here](https://alphavantage-api.marcelwagner.dev/deep-dive/indicators).

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Marcel Wagner](https://github.com/Tschucki)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

47

—

FairBetter than 94% of packages

Maintenance89

Actively maintained with recent releases

Popularity27

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 57.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~154 days

Total

5

Last Release

55d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/dc149b9eb108a5903ebab8c27a89cc08ff38752585888224a58f2f00377fa8d0?d=identicon)[Tschucki](/maintainers/Tschucki)

---

Top Contributors

[![Tschucki](https://avatars.githubusercontent.com/u/43211841?v=4)](https://github.com/Tschucki "Tschucki (23 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (7 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (5 commits)")[![hackeresq](https://avatars.githubusercontent.com/u/16628119?v=4)](https://github.com/hackeresq "hackeresq (5 commits)")

---

Tags

alphavantagealphavantage-apialphavantage-phpapi-wrapperlaravelpackagelaravelTschuckiMarcel Wagneralphavantage-laravel

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/tschucki-alphavantage-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/tschucki-alphavantage-laravel/health.svg)](https://phpackages.com/packages/tschucki-alphavantage-laravel)
```

###  Alternatives

[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.1k7.8M57](/packages/dedoc-scramble)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[ryangjchandler/bearer

Minimalistic token-based authentication for Laravel API endpoints.

8129.8k](/packages/ryangjchandler-bearer)[combindma/laravel-facebook-pixel

Meta pixel integration for Laravel

4956.9k](/packages/combindma-laravel-facebook-pixel)[stechstudio/laravel-hubspot

A Laravel SDK for the HubSpot CRM Api

2971.0k](/packages/stechstudio-laravel-hubspot)[njoguamos/laravel-plausible

A laravel package for interacting with plausible analytics api.

208.8k](/packages/njoguamos-laravel-plausible)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
