> For the complete documentation index, see [llms.txt](https://alphavantage-api.marcelwagner.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://alphavantage-api.marcelwagner.dev/alphavantage-laravel-api/basic-usage.md).

# Basic Usage

Usage of the Alphavantage Laravel API Package

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.

```php
use Tschucki\Alphavantage;

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