PHPackages                             fintech-systems/yodlee-api - 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. fintech-systems/yodlee-api

ActiveLibrary[API Development](/categories/api)

fintech-systems/yodlee-api
==========================

v0.0.26(3y ago)1352PHP

Since Oct 12Pushed 1y ago1 watchersCompare

[ Source](https://github.com/fintech-systems/yodlee-api)[ Packagist](https://packagist.org/packages/fintech-systems/yodlee-api)[ RSS](/packages/fintech-systems-yodlee-api/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (7)Versions (23)Used By (0)

Yodlee API
==========

[](#yodlee-api)

[![Latest Stable Version](https://camo.githubusercontent.com/57814373c3b56ed48251a5ec82ddf1115b76c0c73b4ec4bc37ecdab8fd674c64/68747470733a2f2f706f7365722e707567782e6f72672f66696e746563682d73797374656d732f796f646c65652d7068702d6170692f762f737461626c653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/fintech-systems/yodlee-api)[![GitHub](https://camo.githubusercontent.com/ba173a4a4cf37560655c20c24947393f8a46f5576f1ef1c7bb142d3538a87766/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f66696e746563682d73797374656d732f796f646c65652d617069)](https://camo.githubusercontent.com/ba173a4a4cf37560655c20c24947393f8a46f5576f1ef1c7bb142d3538a87766/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f66696e746563682d73797374656d732f796f646c65652d617069)

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

[](#installation)

### Install the package via composer:

[](#install-the-package-via-composer)

```
composer require fintech-systems/yodlee-api
```

### Store private and public keys

[](#store-private-and-public-keys)

Create a directory `/storage` and copy your private key to `/storage/private-key.pem`. If you want to run the full testsuite, also copy `public-key.pem` to `/storage`.

### Set up the environment file

[](#set-up-the-environment-file)

Copy `.env.example` file to `.env` and complete the details.

Contents of .env
----------------

[](#contents-of-env)

```
YODLEE_COBRAND_NAME=
YODLEE_COBRAND_LOGIN=
YODLEE_COBRAND_PASSWORD=
YODLEE_API_URL=
YODLEE_API_KEY=
YODLEE_USERNAME=

```

Commands
--------

[](#commands)

List of Commands
----------------

[](#list-of-commands)

Display API keys:

```
✗ php artisan yodlee:api-key
+-----------------------------------------------+-------------+
| key                                           | createdDate |
+-----------------------------------------------+-------------+
| 00000000-00000000-0000-0000-0000-000000000000 | 2021-05-06  |
+-----------------------------------------------+-------------+

```

Console Commands
----------------

[](#console-commands)

The console commands contains a subset of the main API methods.

```
yodlee:accounts                       Fetch a list of Yodlee accounts
yodlee:api-key                        Fetch a list of Yodlee API keys
yodlee:delete-user                    Delete an existing Yodlee user
yodlee:event-subscriptions            Fetch a list of subscribed notification events
yodlee:get-user                       Fetch details about a Yodlee user
yodlee:providers                      Fetch a list of Yodlee providers
yodlee:provider-accounts              Fetch a list of Yodlee provider accounts
yodlee:register-user                  Register a new Yodlee user
yodlee:subscribe                      Subscribe to DATA_UPDATES event notifications
yodlee:transactions                   Fetch a list of Yodlee transactions for a user
yodlee:unsubscribe                    Unsubscribe from DATA_UPDATES event notifications

```

Errors
------

[](#errors)

### Retrieving a user

[](#retrieving-a-user)

#### Token issues

[](#token-issues)

```
{
    "errorCode": "Y008",
    "errorMessage": "Invalid token in authorization header",
    "referenceCode": "c1b1b1b1-1b1b-1b1b-1b1b-1b1b1b1b1b1b"
}

```

Check that you have the correct username as specified user `YODLEE_USERNAME` in your `.env` file.

Testing
-------

[](#testing)

Test examples:

```
vendor/bin/phpunit
vendor/bin/phpunit --testdox
vendor/bin/phpunit tests/ApiTest.php
vendor/bin/phpunit --filter it_can_generate_a_jwt_token tests/
ApiTest.php
XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html=tests/coverage-report
```

Changelog
---------

[](#changelog)

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

Laravel Specific Config
-----------------------

[](#laravel-specific-config)

To publish the config:

```
php artisan vendor:publish --tag=yodlee-config

```

Local Development
-----------------

[](#local-development)

- Ensure your `private-key.pem` and `public-key.pem` keys are stored in /storage

The event subscription callback URL will normally be `https://app_url/api/v1/event`.

If you're doing local development, add a temporary URL to the `.env` file, e.g: `EVENT_CALLBACK_URL=my-app.eu-1.sharedwithexpose.com/api/v1/event`

The above example assumes you're using Expose. The start Expose with this URL with Laravel Valet, do this:

`expose share --subdomain=my-app --server=eu-1 http://my-app.test`

If you're testing with an existing project, then update composer.json in the existing project to require the file like so:

```
"repositories": [
        ...
        ,
        {
            "type": "path",
            "url": "../yodlee-api"
        }
    ],

```

Then update composer:

```
  composer require fintech-systems/yodlee-api:dev-main
...
  - Upgrading fintech-systems/yodlee-api (v0.0.17 => dev-main)
...
  - Removing fintech-systems/yodlee-api (v0.0.17)
  - Installing fintech-systems/yodlee-api (dev-main): Symlinking from ../yodlee-api
Generating optimized autoload files

```

License
-------

[](#license)

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

Need Help?
----------

[](#need-help)

### Yodlee ERD

[](#yodlee-erd)

To get a high level overview of Yodlee's data structure, see here:

[https://developer.yodlee.com/docs/api/1.1/Data\_Model](https://developer.yodlee.com/docs/api/1.1/Data_Model)

### Yodlee API Reference

[](#yodlee-api-reference)

The Yodlee Developer's API Reference can be found here:

I'm developing this API on my own time for a larger project but if you reach out I might be able to help or prioritize features.

+27823096710

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance30

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~16 days

Recently: every ~5 days

Total

22

Last Release

1334d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/932743c076390240ecdefe58dc5f81b60cb5fe9ed38b3bead0541f640a7bb2a8?d=identicon)[eugenevdm](/maintainers/eugenevdm)

---

Top Contributors

[![eugenefvdm](https://avatars.githubusercontent.com/u/1836436?v=4)](https://github.com/eugenefvdm "eugenefvdm (106 commits)")

---

Tags

laravelphpyodlee-api

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/fintech-systems-yodlee-api/health.svg)

```
[![Health](https://phpackages.com/badges/fintech-systems-yodlee-api/health.svg)](https://phpackages.com/packages/fintech-systems-yodlee-api)
```

###  Alternatives

[google/apiclient

Client library for Google APIs

9.8k191.4M997](/packages/google-apiclient)[packbackbooks/lti-1p3-tool

A library used for building IMS-certified LTI 1.3 tool providers in PHP.

51438.3k2](/packages/packbackbooks-lti-1p3-tool)[hoels/app-store-server-library-php

The PHP server library for the App Store Server API and App Store Server Notifications.

44162.2k](/packages/hoels-app-store-server-library-php)[exinone/mixin-sdk-php

Mixin-Network SDK for PHP, modify from ExinOne/laravel-mixin-sdk

242.5k4](/packages/exinone-mixin-sdk-php)[soneso/stellar-php-sdk

Stellar PHP SDK for the Stellar Network

4048.2k4](/packages/soneso-stellar-php-sdk)[revolution/laravel-bluesky

Bluesky(AT Protocol) for Laravel

4317.3k](/packages/revolution-laravel-bluesky)

PHPackages © 2026

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