You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A library for accessing financial data from
Yodlee API. Built for easier
integration with Laravel PHP Framework as a dependency.
Code Example
<?php// NOTE: This script assumesinstallationwithcomposerandusingcomposer's autoloader.require_once'vendor/autoload.php';
// Minimum required Yodleecredentials.$yodleeApiUrl = 'https://developer.api.yodlee.com/ysl/restserver/v1';
$yodleeApiCobrandLogin = 'johndoe';
$yodleeApiCobrandPassword = 'johndoe#123';
// Create a new instance of the SDK.$yodleeApi = new \YodleeApi\Client($yodleeApiUrl);
// Login the cobrand.$yodleeApi->cobrand()->login($yodleeApiCobrandLogin, $yodleeApiCobrandPassword);
// Fetch all available banks,institutionsetc.thataresupportedbyYodlee.$providers = $yodleeApi->providers()->get();
Check the examples/ directory for sample scripts.
Installation with Composer
composer require progknife/yodlee-api
API Reference
cobrand()
Return
Method
Description
bool
login(string $username, string $password)
Authenticates the cobrand.
void
logout()
Ends the authenticated cobrand's session from Yodlee.